opt/check/Pkgfile
2019-02-15 15:11:51 +09:00

19 lines
421 B
Plaintext

# Description: A unit testing framework for C
# URL: http://libcheck.github.io/check/
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on:
name=check
version=0.12.0
release=1
source=(https://github.com/libcheck/check/releases/download/$version/$name-$version.tar.gz)
build () {
cd $name-$version
./configure \
--prefix=/usr
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/{doc,info}
}