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/plf-stack | |
Diffstat (limited to 'vcpkg/ports/plf-stack')
| -rw-r--r-- | vcpkg/ports/plf-stack/portfile.cmake | 14 | ||||
| -rw-r--r-- | vcpkg/ports/plf-stack/vcpkg.json | 7 |
2 files changed, 21 insertions, 0 deletions
diff --git a/vcpkg/ports/plf-stack/portfile.cmake b/vcpkg/ports/plf-stack/portfile.cmake new file mode 100644 index 0000000..370ea57 --- /dev/null +++ b/vcpkg/ports/plf-stack/portfile.cmake @@ -0,0 +1,14 @@ +# header-only library + +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO mattreecebentley/plf_stack + REF 9d046154d8954eafc12f8d4845505beec8c4a5da + SHA512 2202bbff0e93bf515ae7b237551d084dcba9b870bca82f49b4e1a64446f4574079b0cb45fb91f0ad0472e008f21ad014464b45e307ffa6dab19affc6dc38626a + HEAD_REF master +) + +file(COPY ${SOURCE_PATH}/plf_stack.h DESTINATION ${CURRENT_PACKAGES_DIR}/include) + +# Handle copyright +configure_file(${SOURCE_PATH}/LICENSE.md ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright COPYONLY) diff --git a/vcpkg/ports/plf-stack/vcpkg.json b/vcpkg/ports/plf-stack/vcpkg.json new file mode 100644 index 0000000..096fc1b --- /dev/null +++ b/vcpkg/ports/plf-stack/vcpkg.json @@ -0,0 +1,7 @@ +{ + "name": "plf-stack", + "version-date": "2019-08-10", + "port-version": 2, + "description": "A C++ data container replicating std::stack functionality but with better performance", + "homepage": "https://www.plflib.org/" +} |