check: Initial import version 0.9.14

This commit is contained in:
Alan Mizrahi 2015-01-27 19:24:57 +09:00
parent df4272e3a5
commit 3f55b59f67
3 changed files with 40 additions and 0 deletions

20
check/.footprint Normal file
View File

@ -0,0 +1,20 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/checkmk
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/check.h
-rw-r--r-- root/root usr/include/check_stdint.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libcheck.a
-rwxr-xr-x root/root usr/lib/libcheck.la
lrwxrwxrwx root/root usr/lib/libcheck.so -> libcheck.so.0.0.0
lrwxrwxrwx root/root usr/lib/libcheck.so.0 -> libcheck.so.0.0.0
-rwxr-xr-x root/root usr/lib/libcheck.so.0.0.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/check.pc
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/checkmk.1.gz
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/aclocal/
-rw-r--r-- root/root usr/share/aclocal/check.m4

1
check/.md5sum Normal file
View File

@ -0,0 +1 @@
38263d115d784c17aa3b959ce94be8b8 check-0.9.14.tar.gz

19
check/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: A unit testing framework for C
# URL: http://check.sourceforge.net/
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on:
name=check
version=0.9.14
release=1
source=(http://downloads.sourceforge.net/sourceforge/$name/$name-$version.tar.gz)
build () {
cd $name-$version
./configure \
--prefix=/usr \
--mandir=/usr/man
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/{doc,info}
}