core/procps/Pkgfile

34 lines
936 B
Plaintext
Raw Permalink 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
version=3.3.15
2015-08-12 15:17:58 +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 \
2015-08-12 15:17:58 +02:00
--sbindir=/sbin \
2012-05-22 17:18:14 +02:00
--libdir=/usr/lib \
--sysconfdir=/etc \
2013-09-03 23:33:58 +02:00
--disable-nls \
--disable-kill \
2016-07-11 13:00:49 +02:00
--disable-modern-top
2012-05-22 17:18:14 +02:00
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
2012-05-22 17:18:14 +02:00
2015-08-12 15:17:58 +02:00
install -d $PKG/{bin,lib,etc}
mv $PKG/usr/bin/{ps,pidof} $PKG/bin/
2012-05-22 17:18:14 +02:00
mv $PKG/usr/lib/libprocps.so.* $PKG/lib
ln -sf ../../lib/$(readlink $PKG/lib/libprocps.so.7) $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/doc
}