2015-01-27 19:24:57 +09:00
|
|
|
# Description: A unit testing framework for C
|
2020-06-21 20:21:42 +10:00
|
|
|
# URL: https://libcheck.github.io/check/
|
2015-01-27 19:24:57 +09:00
|
|
|
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
|
|
|
|
|
|
|
|
name=check
|
2020-09-01 19:02:03 +02:00
|
|
|
version=0.15.2
|
2015-01-27 19:24:57 +09:00
|
|
|
release=1
|
2016-09-01 12:07:46 +09:00
|
|
|
source=(https://github.com/libcheck/check/releases/download/$version/$name-$version.tar.gz)
|
2015-01-27 19:24:57 +09:00
|
|
|
|
|
|
|
build () {
|
|
|
|
cd $name-$version
|
2020-09-01 19:02:03 +02:00
|
|
|
./configure --prefix=/usr
|
2015-01-27 19:24:57 +09:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2020-09-01 19:02:03 +02:00
|
|
|
rm -r $PKG/usr/share/{doc,info}
|
2015-01-27 19:24:57 +09:00
|
|
|
}
|