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/recycle | |
Diffstat (limited to 'vcpkg/ports/recycle')
| -rw-r--r-- | vcpkg/ports/recycle/portfile.cmake | 16 | ||||
| -rw-r--r-- | vcpkg/ports/recycle/vcpkg.json | 13 |
2 files changed, 29 insertions, 0 deletions
diff --git a/vcpkg/ports/recycle/portfile.cmake b/vcpkg/ports/recycle/portfile.cmake new file mode 100644 index 0000000..01438f6 --- /dev/null +++ b/vcpkg/ports/recycle/portfile.cmake @@ -0,0 +1,16 @@ +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO steinwurf/recycle + REF "${VERSION}" + SHA512 c30cd3d388eeeea6a3db344e0e448878686c4a7bc106260c7de9d1eeb3477435eb1783bca09151356ba51200ecf14182891f97a38943959032c54b17ea0abac3 +) + +vcpkg_cmake_configure( + SOURCE_PATH "${SOURCE_PATH}" +) + +vcpkg_cmake_install() + +vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE.rst") + +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug") diff --git a/vcpkg/ports/recycle/vcpkg.json b/vcpkg/ports/recycle/vcpkg.json new file mode 100644 index 0000000..5dbd917 --- /dev/null +++ b/vcpkg/ports/recycle/vcpkg.json @@ -0,0 +1,13 @@ +{ + "name": "recycle", + "version": "7.0.0", + "description": "Simple resource pool for recycling resources in C++", + "homepage": "https://github.com/steinwurf/recycle", + "license": "BSD-3-Clause", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + } + ] +} |