2015-02-17 13:44:45 +01:00
|
|
|
# Description: Control the creation and termination of system-level processes
|
2020-06-24 16:29:11 -05:00
|
|
|
# URL: https://man7.org/linux/man-pages/man8/start-stop-daemon.8.html
|
2015-02-17 13:44:45 +01:00
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
|
|
|
|
|
|
name=start-stop-daemon
|
2019-03-19 14:03:37 +01:00
|
|
|
version=20190310
|
2020-08-11 09:27:10 +00:00
|
|
|
release=2
|
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 () {
|
2020-08-11 09:27:10 +00:00
|
|
|
patch -p0 -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/
|
2015-02-17 13:44:45 +01:00
|
|
|
}
|