blob: e0b31d85f2b9bd918a37896a26ae5e93d8ad11a1 (
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/bash
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
}
|