From d2567bfbdf0e9fa6db0a6ed1534831ec859a3e03 Mon Sep 17 00:00:00 2001 From: davidovski Date: Wed, 15 Jun 2022 20:02:02 +0100 Subject: added deps for qemu --- repo/cunit/cunit.xibuild | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 repo/cunit/cunit.xibuild (limited to 'repo/cunit/cunit.xibuild') 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 +} + -- cgit v1.2.1