[p-ranav-csv] Add new port (#7236)

This commit is contained in:
myd7349 2019-07-19 04:48:07 +08:00 committed by Phil Christensen
parent 527d1009c3
commit ea071b3505
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,4 @@
Source: p-ranav-csv
Version: 2019-07-11
Description: CSV for modern C++
Homepage: https://github.com/p-ranav/csv

View File

@ -0,0 +1,25 @@
# header-only library
include(vcpkg_common_functions)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO p-ranav/csv
REF 13e04e5b31b585855c7d7e7f3c65e47ae863569b
SHA512 ddcdc7af68a0dabb2b7e15822f5900461b9f424ff5e0ac6cafd2454c2f21ca97785ef09ddb805a92e2452fe14c14167c762a822a8af6c5b86446f67e7f3f71bd
HEAD_REF master
)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
-DCSV_BUILD_TESTS=OFF
)
vcpkg_install_cmake()
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug)
# Handle copyright
configure_file(${SOURCE_PATH}/LICENSE ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright COPYONLY)