summaryrefslogtreecommitdiff
path: root/repo/cunit/cunit.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-06-15 20:02:02 +0100
committerdavidovski <david@davidovski.xyz>2022-06-15 20:02:02 +0100
commitd2567bfbdf0e9fa6db0a6ed1534831ec859a3e03 (patch)
tree684a17eebf446aa1adab1097616f1882c8d51568 /repo/cunit/cunit.xibuild
parentd1fc3393cca72e8e432f827f7624e38734fad6dc (diff)
added deps for qemu
Diffstat (limited to 'repo/cunit/cunit.xibuild')
-rw-r--r--repo/cunit/cunit.xibuild48
1 files changed, 48 insertions, 0 deletions
diff --git a/repo/cunit/cunit.xibuild b/repo/cunit/cunit.xibuild
new file mode 100644
index 0000000..3b4b04f
--- /dev/null
+++ b/repo/cunit/cunit.xibuild
@@ -0,0 +1,48 @@
+#!/bin/sh
+
+NAME="cunit"
+DESC="Automated testing framework for C"
+
+MAKEDEPS=" automake autoconf libtool bash"
+
+PKG_VER=2.1-3
+SOURCE="https://downloads.sourceforge.net/project/cunit/CUnit/$PKG_VER/CUnit-$PKG_VER.tar.bz2"
+
+ADDITIONAL="
+path-makefile.patch
+"
+
+prepare() {
+ apply_patches
+
+ libtoolize --force --copy
+ aclocal
+ autoheader
+ automake --add-missing --include-deps --copy
+ autoconf
+ sed -i "s/@VERSION@-@RELEASE@/$PKG_VER/" cunit.pc.in
+}
+
+build() {
+ ./configure \
+ --prefix=/usr \
+ --includedir=/usr/include \
+ --datarootdir=/usr/share \
+ --libdir=/usr/lib \
+ --enable-debug \
+ --enable-examples \
+ --enable-automated \
+ --enable-basic \
+ --enable-test \
+ --disable-static
+ make
+}
+
+check() {
+ make check
+}
+
+package() {
+ make DESTDIR="$PKG_DEST" install
+}
+