summaryrefslogtreecommitdiff
path: root/repo/check/check.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/check/check.xibuild')
-rw-r--r--repo/check/check.xibuild17
1 files changed, 17 insertions, 0 deletions
diff --git a/repo/check/check.xibuild b/repo/check/check.xibuild
new file mode 100644
index 0000000..192e219
--- /dev/null
+++ b/repo/check/check.xibuild
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+MAKEDEPS="make"
+DEPS="gawk"
+
+PKG_VER=0.15.2
+SOURCE=https://github.com/libcheck/check/releases/download/$PKG_VER/check-$PKG_VER.tar.gz
+DESC="A unit testing framework for C"
+
+build () {
+ ./configure --prefix=/usr --disable-static
+ make
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+}