diff options
| author | myd7349 <myd7349@gmail.com> | 2019-08-14 01:50:49 +0800 |
|---|---|---|
| committer | Victor Romero <romerosanchezv@gmail.com> | 2019-08-13 10:50:49 -0700 |
| commit | 886dad5911a54f70d9922c59453588637da0e0d6 (patch) | |
| tree | f3a602a2579bb46455324b3ca061219eba12c9e2 /ports/plf-stack | |
| parent | fc7b1ff7a7a9dc2edf432f28fdcbfdfef790c5fb (diff) | |
| download | vcpkg-886dad5911a54f70d9922c59453588637da0e0d6.tar.gz vcpkg-886dad5911a54f70d9922c59453588637da0e0d6.zip | |
[plf-colony][plf-list][plf-nanotimer][plf-stack] Add new ports (#7627)
Diffstat (limited to 'ports/plf-stack')
| -rw-r--r-- | ports/plf-stack/CONTROL | 4 | ||||
| -rw-r--r-- | ports/plf-stack/portfile.cmake | 16 |
2 files changed, 20 insertions, 0 deletions
diff --git a/ports/plf-stack/CONTROL b/ports/plf-stack/CONTROL new file mode 100644 index 000000000..d0a40be45 --- /dev/null +++ b/ports/plf-stack/CONTROL @@ -0,0 +1,4 @@ +Source: plf-stack +Version: 2019-08-10 +Description: A C++ data container replicating std::stack functionality but with better performance +Homepage: https://www.plflib.org/ diff --git a/ports/plf-stack/portfile.cmake b/ports/plf-stack/portfile.cmake new file mode 100644 index 000000000..11a9fb068 --- /dev/null +++ b/ports/plf-stack/portfile.cmake @@ -0,0 +1,16 @@ +# header-only library + +include(vcpkg_common_functions) + +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) |
