check: moved from opt, adopted

This commit is contained in:
Matt Housh 2021-06-27 19:23:23 -05:00
parent e91a6d3ae8
commit ba0ff7de65
3 changed files with 41 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/share/
drwxr-xr-x root/root usr/share/aclocal/
-rw-r--r-- root/root usr/share/aclocal/check.m4
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/checkmk.1.gz

5
check/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF32IC+k2IYGUhtouDRow3g/BbqFnf7detXGHN+p6RFnkyq8lRAoJVoX0F6+K3SnMdu+JS27c7XwUks9xokAfoIwg=
SHA256 (Pkgfile) = e28795f5b1d79c8132850b57a6b4fd3c6469c915fe2a1f92ff2a698d4c852d7c
SHA256 (.footprint) = 4b3109b220af2cf514cadec368724680ec29e254f9c39b56a6bf877d535f3af8
SHA256 (check-0.15.2.tar.gz) = a8de4e0bacfb4d76dd1c618ded263523b53b85d92a146d8835eb1a52932fa20a

16
check/Pkgfile Normal file
View File

@ -0,0 +1,16 @@
# Description: A unit testing framework for C
# URL: https://libcheck.github.io/check/
# Maintainer: Matt Housh, jaeger at crux dot ninja
name=check
version=0.15.2
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 -r $PKG/usr/share/{doc,info}
}