diff options
author | TimB87 <tbier@posteo.de> | 2019-06-11 23:45:45 +0200 |
---|---|---|
committer | TimB87 <tbier@posteo.de> | 2019-06-11 23:45:45 +0200 |
commit | 0b0e8961ed5f854c8def050bbf6b3aefa7db16c9 (patch) | |
tree | 7897e7402f77235482ee13402f5f7c935a19fd34 /libdaemon | |
parent | 0f6bab6b32d38dda7d0ac9ea243d859d22a0e337 (diff) | |
download | contrib-0b0e8961ed5f854c8def050bbf6b3aefa7db16c9.tar.gz contrib-0b0e8961ed5f854c8def050bbf6b3aefa7db16c9.tar.xz |
libdaemon: initial commit
Diffstat (limited to 'libdaemon')
-rw-r--r-- | libdaemon/.footprint | 18 | ||||
-rw-r--r-- | libdaemon/.signature | 5 | ||||
-rw-r--r-- | libdaemon/Pkgfile | 18 |
3 files changed, 41 insertions, 0 deletions
diff --git a/libdaemon/.footprint b/libdaemon/.footprint new file mode 100644 index 000000000..0b27573c2 --- /dev/null +++ b/libdaemon/.footprint @@ -0,0 +1,18 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/libdaemon/ +-rw-r--r-- root/root usr/include/libdaemon/daemon.h +-rw-r--r-- root/root usr/include/libdaemon/dexec.h +-rw-r--r-- root/root usr/include/libdaemon/dfork.h +-rw-r--r-- root/root usr/include/libdaemon/dlog.h +-rw-r--r-- root/root usr/include/libdaemon/dnonblock.h +-rw-r--r-- root/root usr/include/libdaemon/dpid.h +-rw-r--r-- root/root usr/include/libdaemon/dsignal.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libdaemon.a +-rwxr-xr-x root/root usr/lib/libdaemon.la +lrwxrwxrwx root/root usr/lib/libdaemon.so -> libdaemon.so.0.5.0 +lrwxrwxrwx root/root usr/lib/libdaemon.so.0 -> libdaemon.so.0.5.0 +-rwxr-xr-x root/root usr/lib/libdaemon.so.0.5.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/libdaemon.pc diff --git a/libdaemon/.signature b/libdaemon/.signature new file mode 100644 index 000000000..59e39349d --- /dev/null +++ b/libdaemon/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF33Ixcpt8Eneoi2iK53OBsNUiCBY+afrdlycq5aorFrjSEA6US42z6d7Ili/VHN0DLXfMCvu+qT5pc+nUKIbiIwI= +SHA256 (Pkgfile) = 0d05af331d45e7df17c98e1b6894efe378b8686ed58120c79fe62fe1c5db9f97 +SHA256 (.footprint) = 1c05c33543dbd608ded37d5de0beaf73773b1d5269f5e9a477caea041b96cd04 +SHA256 (libdaemon-0.14.tar.gz) = fd23eb5f6f986dcc7e708307355ba3289abe03cc381fc47a80bca4a50aa6b834 diff --git a/libdaemon/Pkgfile b/libdaemon/Pkgfile new file mode 100644 index 000000000..3ae8d363d --- /dev/null +++ b/libdaemon/Pkgfile @@ -0,0 +1,18 @@ +# Description: a lightweight C library that eases the writing of UNIX daemons +# URL: http://0pointer.de/lennart/projects/libdaemon/ +# Maintainer: crux libreoffice team, tbier at posteo dot de +# Packager: Matt Housh, jaeger at crux dot ninja + +name=libdaemon +version=0.14 +release=1 +source=(http://0pointer.de/lennart/projects/$name/$name-$version.tar.gz) + +build() { + cd $name-$version + ./configure --prefix=/usr \ + --disable-lynx + make + make DESTDIR=$PKG install + rm -r $PKG/usr/share +} |