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/poolstl | |
Diffstat (limited to 'vcpkg/ports/poolstl')
| -rw-r--r-- | vcpkg/ports/poolstl/fix-find-dependency.patch | 14 | ||||
| -rw-r--r-- | vcpkg/ports/poolstl/portfile.cmake | 30 | ||||
| -rw-r--r-- | vcpkg/ports/poolstl/vcpkg.json | 17 |
3 files changed, 61 insertions, 0 deletions
diff --git a/vcpkg/ports/poolstl/fix-find-dependency.patch b/vcpkg/ports/poolstl/fix-find-dependency.patch new file mode 100644 index 0000000..75e6d8e --- /dev/null +++ b/vcpkg/ports/poolstl/fix-find-dependency.patch @@ -0,0 +1,14 @@ +diff --git a/cmake/config.cmake.in b/cmake/config.cmake.in
+--- a/cmake/config.cmake.in
++++ b/cmake/config.cmake.in
+@@ -1,7 +1,10 @@
+
+ @PACKAGE_INIT@
+
++include(CMakeFindDependencyMacro)
++find_dependency(Threads)
++
+ include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake")
+
+ set_and_check(@PROJECT_NAME@_INCLUDE_DIR "@PACKAGE_CMAKE_INSTALL_INCLUDEDIR@")
+ check_required_components("@PROJECT_NAME@")
diff --git a/vcpkg/ports/poolstl/portfile.cmake b/vcpkg/ports/poolstl/portfile.cmake new file mode 100644 index 0000000..4143a51 --- /dev/null +++ b/vcpkg/ports/poolstl/portfile.cmake @@ -0,0 +1,30 @@ +set(VCPKG_BUILD_TYPE release) # header-only + +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO alugowski/poolSTL + REF "v${VERSION}" + SHA512 a2d29056b29f32f034560f88e05f7257ff1f43b46579b940da3e340c97cf8bfbb7d886f5101044d5e22931af37bbcf72f956a0157e135cdf10c7a987e56ba081 + HEAD_REF main + PATCHES + fix-find-dependency.patch +) + +vcpkg_cmake_configure( + SOURCE_PATH "${SOURCE_PATH}" +) + +vcpkg_cmake_install() +vcpkg_cmake_config_fixup(CONFIG_PATH share/cmake/poolSTL) + +vcpkg_install_copyright( + COMMENT [[ +poolSTL is triple-licensed under the BSD 2-Clause License, +the Boost Software License 1.0, and the MIT license. +You may select, at your option, one of the above-listed licenses. +]] + FILE_LIST + "${SOURCE_PATH}/LICENSE-BSD.txt" + "${SOURCE_PATH}/LICENSE-Boost.txt" + "${SOURCE_PATH}/LICENSE-MIT.txt" +) diff --git a/vcpkg/ports/poolstl/vcpkg.json b/vcpkg/ports/poolstl/vcpkg.json new file mode 100644 index 0000000..1af8ad9 --- /dev/null +++ b/vcpkg/ports/poolstl/vcpkg.json @@ -0,0 +1,17 @@ +{ + "name": "poolstl", + "version": "0.3.5", + "description": "Light and self-contained implementation of C++17 parallel algorithms.", + "homepage": "https://github.com/alugowski/poolSTL", + "license": "BSD-2-Clause OR BSL-1.0 OR MIT", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ] +} |