19 lines
531 B
Plaintext
19 lines
531 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=20170812
|
|
release=1
|
|
source=(start-stop-daemon.c start-stop-daemon.8 crux-patch.diff makefile)
|
|
|
|
build () {
|
|
patch -p2 -i crux-patch.diff
|
|
|
|
make
|
|
|
|
install -d $PKG/{sbin,usr/share/man/man8}
|
|
install -m 755 $name $PKG/sbin/
|
|
install -m 644 $name.8 $PKG/usr/share/man/man8/
|
|
}
|