sysvinit: update to 3.00

This commit is contained in:
Juergen Daubert 2021-09-25 09:02:31 +02:00
parent 9b8387a884
commit 10155cb4ef
2 changed files with 22 additions and 22 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/core.pub
RWRJc1FUaeVeqkgul0sPZcVruZYdcB6nvTd7kUDRxtr0ISb1kk76O71hWHJK2Fs+W9me175pTZYWHvve9AbJo3Hf17rqmOLCpQE=
SHA256 (Pkgfile) = 0d15cd17650a62fc94bdadade68fb14e2becc97231b13efda1b439730b5a5ab7
RWRJc1FUaeVequmQCJjzUG+QJ4S8OvcDNRhvCn+PF5lgdXWo9AS3QJUbGzKMz6K1jBVE2XDOTWGP1t3GdOvKPFASxlrHmM63Ygc=
SHA256 (Pkgfile) = b30c5b81ddd57204cd2cc4cb8ef935cfa9b13a56c46f31e1bd7e13eaaf2b7ba7
SHA256 (.footprint) = 051ae17d05a81c4e51e98abb1a3950f865504b070eb3369b3e64db88fe05dc26
SHA256 (sysvinit-2.99.tar.xz) = b05c3677bb698afe64c997968b00c49b2a9bd320ce963523230ee7ea41197757
SHA256 (sysvinit-3.00.tar.xz) = ed6bc20adb6735389841e7d3eb8650fa750c76af20bf4ed73b1330a4d4c14017

View File

@ -1,32 +1,32 @@
# Description: The Linux System V Init
# URL: https://savannah.nongnu.org/projects/sysvinit/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# URL: https://savannah.nongnu.org/projects/sysvinit/
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=sysvinit
version=2.99
version=3.00
release=1
source=(http://download.savannah.gnu.org/releases/$name/$name-$version.tar.xz)
build() {
cd $name-$version
cd $name-$version
make
make ROOT=$PKG install
make
make ROOT=$PKG install
# Provided by util-linux
rm $PKG/usr/bin/{last,lastb,mesg,utmpdump,wall}
rm $PKG/usr/share/man/man1/{last,lastb,mesg,utmpdump,wall}.1
# Provided by util-linux
rm $PKG/usr/bin/{last,lastb,mesg,utmpdump,wall}
rm $PKG/usr/share/man/man1/{last,lastb,mesg,utmpdump,wall}.1
# Provided by procps
rm $PKG/bin/pidof
rm $PKG/usr/share/man/man8/pidof.8
# Provided by procps
rm $PKG/bin/pidof
rm $PKG/usr/share/man/man8/pidof.8
# Provided by e2fsprogs
rm $PKG/sbin/logsave
rm $PKG/usr/share/man/man8/logsave.8
# Provided by e2fsprogs
rm $PKG/sbin/logsave
rm $PKG/usr/share/man/man8/logsave.8
install -d $PKG/var/log
touch $PKG/var/log/wtmp
touch $PKG/var/log/btmp
chmod 0600 $PKG/var/log/btmp
install -d $PKG/var/log
touch $PKG/var/log/wtmp
touch $PKG/var/log/btmp
chmod 0600 $PKG/var/log/btmp
}