blob: 6a70bda28f09967e275d076371bad005729e3f91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: The /proc file system utilities
# URL: http://procps.sourceforge.net/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: ncurses
name=procps
version=3.2.8
release=3
source=(http://procps.sourceforge.net/$name-$version.tar.gz
$name-$version.patch
$name-$version-linux-ver-init.patch
sysctl.conf)
build() {
cd $name-$version
patch -p1 -i $SRC/$name-$version.patch
patch -p0 -i $SRC/$name-$version-linux-ver-init.patch
make
make DESTDIR=$PKG install
install -D -m644 $SRC/sysctl.conf $PKG/etc/sysctl.conf
}
|