aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/gli
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg/ports/gli')
-rw-r--r--vcpkg/ports/gli/disable-test.patch13
-rw-r--r--vcpkg/ports/gli/portfile.cmake27
-rw-r--r--vcpkg/ports/gli/vcpkg.json18
3 files changed, 58 insertions, 0 deletions
diff --git a/vcpkg/ports/gli/disable-test.patch b/vcpkg/ports/gli/disable-test.patch
new file mode 100644
index 0000000..d6bf0d7
--- /dev/null
+++ b/vcpkg/ports/gli/disable-test.patch
@@ -0,0 +1,13 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 6eb1a68..610c0bc 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -71,7 +71,7 @@ endmacro(addExternalPackageGTC)
+ # Add subdirectory
+
+ add_subdirectory(gli)
+-add_subdirectory(test)
++#add_subdirectory(test)
+ #add_subdirectory(doc)
+
+ ################################
diff --git a/vcpkg/ports/gli/portfile.cmake b/vcpkg/ports/gli/portfile.cmake
new file mode 100644
index 0000000..e4a4edb
--- /dev/null
+++ b/vcpkg/ports/gli/portfile.cmake
@@ -0,0 +1,27 @@
+#header-only library
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO g-truc/gli
+ REF 779b99ac6656e4d30c3b24e96e0136a59649a869
+ SHA512 6e7ab46b7943cb185c8c1f6e45b765f5463e03628973043a0e8b866458ccceb5249f69a2a77b5e69c73f3ace85af96c7b9b2137685ceb6d0fcb67e491a49be69
+ HEAD_REF master
+ PATCHES
+ disable-test.patch
+)
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
+)
+
+vcpkg_cmake_install()
+
+vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/gli)
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug")
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib")
+file(REMOVE "${CURRENT_PACKAGES_DIR}/include/gli/CMakeLists.txt")
+
+# Put the license file where vcpkg expects it
+# manual.md contains the "licenses" section for the project
+file(INSTALL "${SOURCE_PATH}/manual.md" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) \ No newline at end of file
diff --git a/vcpkg/ports/gli/vcpkg.json b/vcpkg/ports/gli/vcpkg.json
new file mode 100644
index 0000000..732f3c2
--- /dev/null
+++ b/vcpkg/ports/gli/vcpkg.json
@@ -0,0 +1,18 @@
+{
+ "name": "gli",
+ "version-date": "2021-07-06",
+ "port-version": 2,
+ "description": "OpenGL Image (GLI)",
+ "homepage": "https://gli.g-truc.net",
+ "dependencies": [
+ "glm",
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ },
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ }
+ ]
+}