2015-02-17 13:44:45 +01:00
|
|
|
# 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
|
2017-08-14 16:53:09 +02:00
|
|
|
version=20170812
|
2015-09-18 16:47:45 +02:00
|
|
|
release=1
|
2015-02-26 17:39:55 +01:00
|
|
|
source=(start-stop-daemon.c start-stop-daemon.8 crux-patch.diff makefile)
|
2015-02-17 13:44:45 +01:00
|
|
|
|
|
|
|
build () {
|
2015-02-26 17:39:55 +01:00
|
|
|
patch -p2 -i crux-patch.diff
|
|
|
|
|
|
|
|
make
|
2015-02-17 13:44:45 +01:00
|
|
|
|
2015-07-25 21:10:14 +02:00
|
|
|
install -d $PKG/{sbin,usr/share/man/man8}
|
2015-02-26 17:39:55 +01:00
|
|
|
install -m 755 $name $PKG/sbin/
|
2015-07-25 21:10:14 +02:00
|
|
|
install -m 644 $name.8 $PKG/usr/share/man/man8/
|
2015-02-17 13:44:45 +01:00
|
|
|
}
|