core/procps/Pkgfile

32 lines
851 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: The /proc file system utilities
2012-05-22 17:18:14 +02:00
# URL: http://gitorious.org/procps
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
# Depends on: ncurses
name=procps
2013-06-01 09:30:43 +02:00
version=3.3.8
2012-05-22 17:18:14 +02:00
release=1
2013-01-13 10:06:26 +01:00
source=(http://downloads.sourceforge.net/project/procps-ng/Production/$name-ng-$version.tar.xz
sysctl.conf)
2006-02-23 16:26:10 +01:00
build() {
2012-05-22 17:18:14 +02:00
cd $name-ng-$version
./configure --prefix=/usr \
--exec-prefix=/ \
--libdir=/usr/lib \
--sysconfdir=/etc \
--mandir=/usr/man \
--disable-kill
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
2012-05-22 17:18:14 +02:00
install -d $PKG/{lib,etc}
mv $PKG/usr/lib/libprocps.so.* $PKG/lib
2013-01-13 10:06:26 +01:00
ln -sf ../../lib/$(readlink $PKG/lib/libprocps.so.1) $PKG/usr/lib/libprocps.so
2012-05-22 17:18:14 +02:00
install -m 0644 $SRC/sysctl.conf $PKG/etc/sysctl.conf
rm -r $PKG/usr/share
}