diff options
Diffstat (limited to 'repo/devel/check.xibuild')
-rw-r--r-- | repo/devel/check.xibuild | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/repo/devel/check.xibuild b/repo/devel/check.xibuild new file mode 100644 index 0000000..a472872 --- /dev/null +++ b/repo/devel/check.xibuild @@ -0,0 +1,12 @@ +#!/bin/bash + +DEPS=(awk) + +SOURCE=https://github.com/libcheck/check/releases/download/0.15.2/check-0.15.2.tar.gz +DESC="A unit testing framework for C" + +build () { + ./configure --prefix=/usr --disable-static + make + make DESTDIR=$PKG_DEST install +} |