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/rioki-glow/portfile.cmake | |
Diffstat (limited to 'vcpkg/ports/rioki-glow/portfile.cmake')
| -rw-r--r-- | vcpkg/ports/rioki-glow/portfile.cmake | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/vcpkg/ports/rioki-glow/portfile.cmake b/vcpkg/ports/rioki-glow/portfile.cmake new file mode 100644 index 0000000..e18795a --- /dev/null +++ b/vcpkg/ports/rioki-glow/portfile.cmake @@ -0,0 +1,18 @@ +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO rioki/glow + REF v0.2.1 + SHA512 410d0bcc98f9587321dceab498ed84fe2cffbf1f38ba59592d5f7eded9eea67c17e40415966d14f548b7e91f23e17fc0162c216c34b905c641647f90274af5b1 + PATCHES + add-iostream.diff # https://github.com/rioki/glow/pull/21 +) + +vcpkg_cmake_configure( + SOURCE_PATH "${SOURCE_PATH}" +) + +vcpkg_cmake_install() +vcpkg_cmake_config_fixup(PACKAGE_NAME "rioki_glow") +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") + +file(INSTALL "${SOURCE_PATH}/LICENSE.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) |