aboutsummaryrefslogtreecommitdiff
path: root/ports
diff options
context:
space:
mode:
Diffstat (limited to 'ports')
-rw-r--r--ports/munit/CONTROL5
-rw-r--r--ports/munit/fix-install.patch13
-rw-r--r--ports/munit/portfile.cmake25
3 files changed, 43 insertions, 0 deletions
diff --git a/ports/munit/CONTROL b/ports/munit/CONTROL
new file mode 100644
index 000000000..8e1bb2e23
--- /dev/null
+++ b/ports/munit/CONTROL
@@ -0,0 +1,5 @@
+Source: munit
+Version: 2019-04-06
+Description: A small but full-featured unit testing framework for C
+Supports: !(arm|arm64|uwp)
+Homepage: https://github.com/nemequ/munit
diff --git a/ports/munit/fix-install.patch b/ports/munit/fix-install.patch
new file mode 100644
index 000000000..6ba7461ad
--- /dev/null
+++ b/ports/munit/fix-install.patch
@@ -0,0 +1,13 @@
+diff --git a/meson.build b/meson.build
+index c15b405..44ee737 100644
+--- a/meson.build
++++ b/meson.build
+@@ -11,7 +11,7 @@ root_include = include_directories('.')
+
+ munit = library('munit',
+ ['munit.c'],
+- install: meson.is_subproject())
++ install: not meson.is_subproject())
+
+ if meson.is_subproject()
+ munit_dep = declare_dependency(
diff --git a/ports/munit/portfile.cmake b/ports/munit/portfile.cmake
new file mode 100644
index 000000000..bd4595930
--- /dev/null
+++ b/ports/munit/portfile.cmake
@@ -0,0 +1,25 @@
+vcpkg_fail_port_install(ON_ARCH "arm" "arm64" ON_TARGET "uwp")
+
+vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO nemequ/munit
+ REF da8f73412998e4f1adf1100dc187533a51af77fd
+ SHA512 cd08c1291a73487f15fdba7bf8675fea9177f0ec9766900f65efb5f00c662532a16499447e9087d304de34ff9138f47d04ebf18713f5aa8aacede22c5e23b98b
+ HEAD_REF master
+ PATCHES
+ fix-install.patch
+)
+
+vcpkg_configure_meson(
+ SOURCE_PATH ${SOURCE_PATH}
+ OPTIONS
+ --backend=ninja
+)
+
+vcpkg_install_meson()
+
+vcpkg_copy_pdbs()
+
+file(INSTALL ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)