aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormyd7349 <myd7349@gmail.com>2019-06-13 07:31:18 +0800
committerRobert Schumacher <roschuma@microsoft.com>2019-06-12 16:31:18 -0700
commit3860c11da25821ace8beade116741b7474b05fb8 (patch)
tree0fe5901b39b08250f75224af1cb5b194fc5db4ef
parent57eea4e7c243d4e13af0b9d1dacf9ccdf583969a (diff)
downloadvcpkg-3860c11da25821ace8beade116741b7474b05fb8.tar.gz
vcpkg-3860c11da25821ace8beade116741b7474b05fb8.zip
[argparse] Add new port (#6866)
-rw-r--r--ports/argparse/CONTROL4
-rw-r--r--ports/argparse/portfile.cmake30
2 files changed, 34 insertions, 0 deletions
diff --git a/ports/argparse/CONTROL b/ports/argparse/CONTROL
new file mode 100644
index 000000000..c7c33adac
--- /dev/null
+++ b/ports/argparse/CONTROL
@@ -0,0 +1,4 @@
+Source: argparse
+Version: 2019-06-10
+Description: Argument parser for modern C++
+Homepage: https://github.com/p-ranav/argparse
diff --git a/ports/argparse/portfile.cmake b/ports/argparse/portfile.cmake
new file mode 100644
index 000000000..0ad21e10a
--- /dev/null
+++ b/ports/argparse/portfile.cmake
@@ -0,0 +1,30 @@
+# header-only library
+
+include(vcpkg_common_functions)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO p-ranav/argparse
+ REF 2c71311b5fa49b7d65e6628375f2748d58830856
+ SHA512 08a28a3fb424befe7df9a428fbad8e2687a1b331d7099bfaca2c3e04d8d4b4888e99d481226407bf90bfce282388545b09e4125128215cc95dc56fb313641bf6
+ HEAD_REF master
+)
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}
+ PREFER_NINJA
+ OPTIONS
+ -DARGPARSE_BUILD_TESTS=OFF
+)
+
+vcpkg_install_cmake()
+
+vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/${PORT})
+
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug ${CURRENT_PACKAGES_DIR}/lib)
+
+# Handle copyright
+configure_file(${SOURCE_PATH}/LICENSE ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright COPYONLY)
+
+# CMake integration test
+vcpkg_test_cmake(PACKAGE_NAME ${PORT})