core/procps/Pkgfile

27 lines
706 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: The /proc file system utilities
# URL: http://procps.sourceforge.net/
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
# Depends on: ncurses
name=procps
2009-05-11 13:50:24 +02:00
version=3.2.8
2006-02-23 16:26:10 +01:00
release=1
source=(http://procps.sourceforge.net/$name-$version.tar.gz \
2009-05-11 13:50:24 +02:00
sysctl.conf)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
make
make DESTDIR=$PKG \
2009-05-11 13:50:24 +02:00
ldconfig=true \
man1=$PKG/usr/man/man1/ \
man5=$PKG/usr/man/man5/ \
man8=$PKG/usr/man/man8/ \
install
2006-02-23 16:26:10 +01:00
install -D -m644 ../sysctl.conf $PKG/etc/sysctl.conf
2009-05-11 13:50:24 +02:00
rm -f $PKG/{bin/kill,usr/man/man1/kill.1}
2006-02-23 16:26:10 +01:00
ln -sf pgrep $PKG/usr/bin/pkill
ln -sf skill $PKG/usr/bin/snice
chmod +w -R $PKG
}