From ba0ff7de65a13016c3a12259c7921b631059c761 Mon Sep 17 00:00:00 2001 From: Matt Housh Date: Sun, 27 Jun 2021 19:23:23 -0500 Subject: [PATCH] check: moved from opt, adopted --- check/.footprint | 20 ++++++++++++++++++++ check/.signature | 5 +++++ check/Pkgfile | 16 ++++++++++++++++ 3 files changed, 41 insertions(+) create mode 100644 check/.footprint create mode 100644 check/.signature create mode 100644 check/Pkgfile diff --git a/check/.footprint b/check/.footprint new file mode 100644 index 000000000..2b58ebb27 --- /dev/null +++ b/check/.footprint @@ -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 diff --git a/check/.signature b/check/.signature new file mode 100644 index 000000000..a20662b31 --- /dev/null +++ b/check/.signature @@ -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 diff --git a/check/Pkgfile b/check/Pkgfile new file mode 100644 index 000000000..72454cabf --- /dev/null +++ b/check/Pkgfile @@ -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} +}