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/tsl-ordered-map | |
Diffstat (limited to 'vcpkg/ports/tsl-ordered-map')
| -rw-r--r-- | vcpkg/ports/tsl-ordered-map/portfile.cmake | 20 | ||||
| -rw-r--r-- | vcpkg/ports/tsl-ordered-map/vcpkg.json | 16 |
2 files changed, 36 insertions, 0 deletions
diff --git a/vcpkg/ports/tsl-ordered-map/portfile.cmake b/vcpkg/ports/tsl-ordered-map/portfile.cmake new file mode 100644 index 0000000..91cd79f --- /dev/null +++ b/vcpkg/ports/tsl-ordered-map/portfile.cmake @@ -0,0 +1,20 @@ +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO Tessil/ordered-map + REF "v${VERSION}" + SHA512 19076fd40e0a4baad58a5cc6f9c906f38167e6c5474e461e982d0e0ea2adeb21fa8acf669145ac033338bf53cc3dc178782d54a9bcf7f835a62b07983da00253 +) + +vcpkg_cmake_configure( + SOURCE_PATH "${SOURCE_PATH}" +) + +vcpkg_cmake_install() +vcpkg_cmake_config_fixup(CONFIG_PATH "share/cmake/${PORT}") + +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug") + +file(INSTALL "${SOURCE_PATH}/LICENSE" + DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" + RENAME copyright +) diff --git a/vcpkg/ports/tsl-ordered-map/vcpkg.json b/vcpkg/ports/tsl-ordered-map/vcpkg.json new file mode 100644 index 0000000..7051f3d --- /dev/null +++ b/vcpkg/ports/tsl-ordered-map/vcpkg.json @@ -0,0 +1,16 @@ +{ + "name": "tsl-ordered-map", + "version": "1.2.0", + "description": "C++ hash map and hash set which preserve the order of insertion", + "homepage": "https://github.com/Tessil/ordered-map", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ] +} |