core/start-stop-daemon/Pkgfile

22 lines
610 B
Plaintext
Raw Normal View History

# 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/
}