core/procps/Pkgfile

28 lines
665 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: Per Lid<69>n, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
# Depends on: ncurses
name=procps
2006-06-25 11:31:05 +02:00
version=3.2.7
2006-02-23 16:26:10 +01:00
release=1
source=(http://procps.sourceforge.net/$name-$version.tar.gz \
sysctl.conf)
build() {
cd $name-$version
make
make DESTDIR=$PKG \
ldconfig=true \
man1=$PKG/usr/man/man1/ \
man5=$PKG/usr/man/man5/ \
man8=$PKG/usr/man/man8/ \
install
install -D -m644 ../sysctl.conf $PKG/etc/sysctl.conf
rm -f $PKG/bin/kill \
$PKG/usr/man/man1/kill.1
ln -sf pgrep $PKG/usr/bin/pkill
ln -sf skill $PKG/usr/bin/snice
chmod +w -R $PKG
}