aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/ghc-filesystem/portfile.cmake
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/ghc-filesystem/portfile.cmake
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/ghc-filesystem/portfile.cmake')
-rw-r--r--vcpkg/ports/ghc-filesystem/portfile.cmake26
1 files changed, 26 insertions, 0 deletions
diff --git a/vcpkg/ports/ghc-filesystem/portfile.cmake b/vcpkg/ports/ghc-filesystem/portfile.cmake
new file mode 100644
index 0000000..a1d5e9b
--- /dev/null
+++ b/vcpkg/ports/ghc-filesystem/portfile.cmake
@@ -0,0 +1,26 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO gulrak/filesystem
+ REF "v${VERSION}"
+ HEAD_REF master
+ SHA512 6eae921485ecdaf4b8329a568b1f4f612ee491fc5fdeafce9c8000b9bf1a73b6fa4e07d0d4ddf05be49efe79e9bddfbcc0aba85529cb016668797a8d89eb9b82
+)
+
+set(VCPKG_BUILD_TYPE release) # header-only port
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
+ OPTIONS
+ -DGHC_FILESYSTEM_BUILD_TESTING=OFF
+ -DGHC_FILESYSTEM_BUILD_EXAMPLES=OFF
+ -DGHC_FILESYSTEM_WITH_INSTALL=ON
+)
+vcpkg_cmake_install()
+vcpkg_cmake_config_fixup(
+ PACKAGE_NAME ghc_filesystem
+ CONFIG_PATH "lib/cmake/ghc_filesystem"
+)
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib")
+
+file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)