aboutsummaryrefslogtreecommitdiff
path: root/ports
diff options
context:
space:
mode:
Diffstat (limited to 'ports')
-rw-r--r--ports/xmsh/CONTROL4
-rw-r--r--ports/xmsh/portfile.cmake29
2 files changed, 33 insertions, 0 deletions
diff --git a/ports/xmsh/CONTROL b/ports/xmsh/CONTROL
new file mode 100644
index 000000000..7f53c582c
--- /dev/null
+++ b/ports/xmsh/CONTROL
@@ -0,0 +1,4 @@
+Source: xmsh
+Version: 0.4.1
+Description: Reference Implementation of XMSH Library
+Build-Depends: tl-expected
diff --git a/ports/xmsh/portfile.cmake b/ports/xmsh/portfile.cmake
new file mode 100644
index 000000000..51897e6bd
--- /dev/null
+++ b/ports/xmsh/portfile.cmake
@@ -0,0 +1,29 @@
+include(vcpkg_common_functions)
+
+vcpkg_find_acquire_program(PYTHON3)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO nagzira/xmsh
+ REF v0.4.1
+ SHA512 7bd9fe9e565b33722fec37a7e3d9bd8b7b132692add5d26e31954367fb284b49a26a21532ddcb0e425af7f8208e755f21f2d8de81b33ed2a1149724f4ccd2c38
+ HEAD_REF master
+)
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}
+ PREFER_NINJA
+ OPTIONS
+ -DPYTHON3_EXECUTABLE=${PYTHON3}
+)
+
+vcpkg_install_cmake()
+
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
+
+if(VCPKG_LIBRARY_LINKAGE STREQUAL static)
+ file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin ${CURRENT_PACKAGES_DIR}/debug/bin)
+endif()
+
+vcpkg_copy_pdbs()