core/start-stop-daemon/Pkgfile
Juergen Daubert 6fc31100b9 [notify] start-stop-daemon: new core port
start-stop-daemon [1] is a small program from debian used to
control the creation and termination of system-level processes
in a reliable and secure way.

We decided to add start-stop-daemon to our core collection and
as with most core ports it is a requirement for a working CRUX
system. Please install.

We encourage all port maintainers to use start-stop-daemon in
their rc scripts. This will improve the scripts a lot without
the need for complex shell scripting.

[1] http://man7.org/linux/man-pages/man8/start-stop-daemon.8.html
2015-02-17 13:44:45 +01:00

22 lines
610 B
Plaintext

# Description: Control the creation and termination of system-level processes
# URL: http://man7.org/linux/man-pages/man8/start-stop-daemon.8.html
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=start-stop-daemon
version=1.17.23
release=1
source=(http://ftp.de.debian.org/debian/pool/main/d/dpkg/dpkg_${version}.tar.xz)
build () {
cd dpkg-$version
./configure --disable-update-alternatives
make -C lib/compat
make -C utils
install -d $PKG/{sbin,usr/man/man8}
install -m 755 utils/$name $PKG/sbin/
install -m 644 man/$name.8 $PKG/usr/man/man8/
}