aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/gul17
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/gul17
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/gul17')
-rw-r--r--vcpkg/ports/gul17/portfile.cmake19
-rw-r--r--vcpkg/ports/gul17/vcpkg.json19
2 files changed, 38 insertions, 0 deletions
diff --git a/vcpkg/ports/gul17/portfile.cmake b/vcpkg/ports/gul17/portfile.cmake
new file mode 100644
index 0000000..00d35dd
--- /dev/null
+++ b/vcpkg/ports/gul17/portfile.cmake
@@ -0,0 +1,19 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO gul-cpp/gul17
+ REF "v${VERSION}"
+ SHA512 afb4cddfe50da000880c51cded6961ae9720152a67a7440612ccf324ff7af646476ff0d1a287f14ad36b95d5cecc17be239f487e281d80b4a9ac1813d2f46f76
+ HEAD_REF main
+)
+
+vcpkg_configure_meson(
+ SOURCE_PATH "${SOURCE_PATH}"
+ OPTIONS -Dtests=false
+)
+
+vcpkg_install_meson()
+vcpkg_fixup_pkgconfig()
+vcpkg_copy_pdbs()
+
+# Install copyright file
+vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/license.txt")
diff --git a/vcpkg/ports/gul17/vcpkg.json b/vcpkg/ports/gul17/vcpkg.json
new file mode 100644
index 0000000..a127e1c
--- /dev/null
+++ b/vcpkg/ports/gul17/vcpkg.json
@@ -0,0 +1,19 @@
+{
+ "name": "gul17",
+ "version": "25.4.1",
+ "description": [
+ "General Utility Library for C++17.",
+ "GUL17 contains often-used utility functions and types that form the foundation for other libraries and programs.",
+ "It provides basic functionality that is not available in the C++17 standard library, including some backports from later versions of the standard."
+ ],
+ "homepage": "https://github.com/gul-cpp/gul17",
+ "documentation": "https://gul-cpp.github.io/gul17/",
+ "license": "LGPL-2.1-or-later",
+ "supports": "!uwp & !xbox",
+ "dependencies": [
+ {
+ "name": "vcpkg-tool-meson",
+ "host": true
+ }
+ ]
+}