From e95159b5a60be3dc8ba29d7baf20ce76b47c2f0e Mon Sep 17 00:00:00 2001 From: George Fotopoulos Date: Tue, 30 Jan 2018 02:44:57 +0200 Subject: [PATCH] [forest] New Package (#2650) * Add header-only library forest --- ports/forest/CONTROL | 3 +++ ports/forest/portfile.cmake | 16 ++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 ports/forest/CONTROL create mode 100644 ports/forest/portfile.cmake diff --git a/ports/forest/CONTROL b/ports/forest/CONTROL new file mode 100644 index 000000000..522668d9d --- /dev/null +++ b/ports/forest/CONTROL @@ -0,0 +1,3 @@ +Source: forest +Version: 4.5.0 +Description: Forest is an open-source, template library of tree data structures written in C++11. diff --git a/ports/forest/portfile.cmake b/ports/forest/portfile.cmake new file mode 100644 index 000000000..6f076a0db --- /dev/null +++ b/ports/forest/portfile.cmake @@ -0,0 +1,16 @@ +# Ηeader-only library + +include(vcpkg_common_functions) +set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/forest-4.5.0) +vcpkg_download_distfile(ARCHIVE + URLS "https://github.com/xorz57/forest/archive/4.5.0.zip" + FILENAME "forest-4.5.0.zip" + SHA512 ae256ad38802d0827cfcd45ffae35ddb95cf74e38cf3e5d806f6e2215f701abfb8159f82e2bb6362788fe96a9f9008429d366e7abbc7980b29b3528052cfe43e +) +vcpkg_extract_source_archive(${ARCHIVE}) + +# Handle headers +file(INSTALL ${SOURCE_PATH}/include DESTINATION ${CURRENT_PACKAGES_DIR} FILES_MATCHING PATTERN "*.h") + +# Handle copyright +file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/forest RENAME copyright)