diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/structopt/portfile.cmake | |
Diffstat (limited to 'vcpkg/ports/structopt/portfile.cmake')
| -rw-r--r-- | vcpkg/ports/structopt/portfile.cmake | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/vcpkg/ports/structopt/portfile.cmake b/vcpkg/ports/structopt/portfile.cmake new file mode 100644 index 0000000..2647238 --- /dev/null +++ b/vcpkg/ports/structopt/portfile.cmake @@ -0,0 +1,42 @@ +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO p-ranav/structopt + REF "v${VERSION}" + SHA512 f284ec20379a1bfecfe1622e45d0570128455ecf0c24f2a1d26420c13a277112ca7ba350e2d40c0b0b37b38eba4ffa6ff164590b32262a5ba23186f7cd904511 + HEAD_REF master + PATCHES + 0000-vendored-dependencies.patch +) + +vcpkg_cmake_configure( + SOURCE_PATH "${SOURCE_PATH}" + OPTIONS + -DSTRUCTOPT_TESTS=OFF + -DSTRUCTOPT_SAMPLES=OFF +) + +vcpkg_cmake_install() + +# Header-only library. +vcpkg_cmake_config_fixup(CONFIG_PATH "lib/cmake/structopt") +vcpkg_fixup_pkgconfig() + +# Delete all third-party header files vendored by the structopt library. The library has been patched to instead use +# the external versions of these libraries. +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/include/structopt/third_party") + +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug") + +vcpkg_install_copyright( + FILE_LIST + "${SOURCE_PATH}/LICENSE" +) + +# Remove redundant license files that are installed by the library. +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/share/licenses) + +configure_file( + "${CMAKE_CURRENT_LIST_DIR}/usage" + "${CURRENT_PACKAGES_DIR}/share/${PORT}/usage" + COPYONLY +) |