blob: 687470d7b302d0f413f0d8eb2698ab502915426a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/sh
MAKEDEPS="make "
DEPS="glibc ncurses"
PKG_VER=3.3.17
SOURCE=https://sourceforge.net/projects/procps-ng/files/Production/procps-ng-$PKG_VER.tar.xz
DESC="Utilities for monitoring your system and its processes"
build () {
./configure --prefix=/usr \
--docdir=/usr/share/doc/procps-ng-$PKG_VER \
--disable-static \
--disable-kill
make
}
#check () {
#make check
#}
package () {
make DESTDIR=$PKG_DEST install
}
|