blob: 72454cabfcc2a9313433ea19bbc78a23fbc6912b (
plain)
1 # Description: A unit testing framework for C
2 # URL: https://libcheck.github.io/check/
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4
5 name=check
6 version=0.15.2
7 release=1
8 source=(https://github.com/libcheck/check/releases/download/$version/$name-$version.tar.gz)
9
10 build () {
11 cd $name-$version
12 ./configure --prefix=/usr
13 make
14 make DESTDIR=$PKG install
15 rm -r $PKG/usr/share/{doc,info}
16 }
|