diff options
Diffstat (limited to 'ports/argparse')
| -rw-r--r-- | ports/argparse/portfile.cmake | 15 | ||||
| -rw-r--r-- | ports/argparse/vcpkg.json | 14 |
2 files changed, 19 insertions, 10 deletions
diff --git a/ports/argparse/portfile.cmake b/ports/argparse/portfile.cmake index a313a920e..82142c63e 100644 --- a/ports/argparse/portfile.cmake +++ b/ports/argparse/portfile.cmake @@ -3,23 +3,22 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO p-ranav/argparse
- REF 9903a22904fed8176c4a1f69c4b691304b23c78e #2021-03-04
- SHA512 da50761471341d558ed0c336bf78f80a704ec25c15ace23fb3a92d81ddbf2e4c2fd4f6c4226f088382f41418d58d5ef9b57cdd6e9689be5d83dba6adb2ac0aba
+ REF b0cb28ab177cdbd19d439c02cdc217bdfc508ba9 # v2.2
+ SHA512 247f27aa45994ee4629b947e3fe1b1df8fae4e773992c740a7c3d544e45ce83a68ecdcfdedf38c461ccb81cf93d88dfee21dc4f7d027677a3c7d930170446971
HEAD_REF master
)
-vcpkg_configure_cmake(
- SOURCE_PATH ${SOURCE_PATH}
- PREFER_NINJA
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
-DARGPARSE_BUILD_TESTS=OFF
)
-vcpkg_install_cmake()
+vcpkg_cmake_install()
-vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/${PORT})
+vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/${PORT})
-file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug ${CURRENT_PACKAGES_DIR}/lib)
+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)
diff --git a/ports/argparse/vcpkg.json b/ports/argparse/vcpkg.json index 7e6be41e7..ca94bbc8b 100644 --- a/ports/argparse/vcpkg.json +++ b/ports/argparse/vcpkg.json @@ -1,7 +1,17 @@ { "name": "argparse", - "version-date": "2021-03-04", + "version": "2.2", "description": "Argument parser for modern C++", "homepage": "https://github.com/p-ranav/argparse", - "license": "MIT" + "license": "MIT", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ] } |
