aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2018-06-30 19:56:11 -0700
committerRobert Schumacher <roschuma@microsoft.com>2018-06-30 19:56:11 -0700
commitc126f80b86914fc0e2a3f367ffc47e6723142dd5 (patch)
tree112a5c6339d992f6fcf47681c325121c58649e38
parent03a038cb8656ef70b86b215511d15bb8b956c207 (diff)
downloadvcpkg-c126f80b86914fc0e2a3f367ffc47e6723142dd5.tar.gz
vcpkg-c126f80b86914fc0e2a3f367ffc47e6723142dd5.zip
[sery] Remove sery -- no longer available on GitHub
-rw-r--r--ports/sery/CONTROL3
-rw-r--r--ports/sery/portfile.cmake32
2 files changed, 0 insertions, 35 deletions
diff --git a/ports/sery/CONTROL b/ports/sery/CONTROL
deleted file mode 100644
index 1a771771b..000000000
--- a/ports/sery/CONTROL
+++ /dev/null
@@ -1,3 +0,0 @@
-Source: sery
-Version: 1.0.0-1
-Description: Simple binary (de)serialization library
diff --git a/ports/sery/portfile.cmake b/ports/sery/portfile.cmake
deleted file mode 100644
index d6ebad5b6..000000000
--- a/ports/sery/portfile.cmake
+++ /dev/null
@@ -1,32 +0,0 @@
-if (VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
- message(STATUS "Warning: Dynamic building not supported yet. Building static.")
- set(VCPKG_LIBRARY_LINKAGE static)
-endif()
-include(vcpkg_common_functions)
-SET(SOURCE_PATH "${CURRENT_BUILDTREES_DIR}/src/Sery-1.0")
-vcpkg_download_distfile(ARCHIVE
- URLS "https://github.com/Ninetainedo/Sery/archive/v1.0.zip"
- FILENAME "sery-1.0.0.zip"
- SHA512 15ef97bf094e8931049d8dd667a778e23847555f0f8d5b949b250e26edcc2541744fac5c34d935880d070546777fa787b1baf018d8ca2240fcd18a820aded04f
-)
-vcpkg_extract_source_archive(${ARCHIVE})
-
-vcpkg_configure_cmake(
- SOURCE_PATH ${SOURCE_PATH}
- # OPTIONS -DUSE_THIS_IN_ALL_BUILDS=1 -DUSE_THIS_TOO=2
- # OPTIONS_RELEASE -DOPTIMIZE=1
- # OPTIONS_DEBUG -DDEBUGGABLE=1
-)
-
-vcpkg_install_cmake()
-
-# Removes unnecessary directories
-file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
-file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/cmake)
-
-# Handle copyright
-file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/sery)
-file(RENAME ${CURRENT_PACKAGES_DIR}/share/sery/LICENSE ${CURRENT_PACKAGES_DIR}/share/sery/copyright)
-
-# Moves cmake files where appropriate
-file(RENAME ${CURRENT_PACKAGES_DIR}/cmake ${CURRENT_PACKAGES_DIR}/share/sery/cmake)