[forest] New Package (#2650)

* Add header-only library forest
This commit is contained in:
George Fotopoulos 2018-01-30 02:44:57 +02:00 committed by Alexander Karatarakis
parent b2eb87dc71
commit e95159b5a6
2 changed files with 19 additions and 0 deletions

3
ports/forest/CONTROL Normal file
View File

@ -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.

View File

@ -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)