summaryrefslogtreecommitdiff
path: root/repo/util/procps-ng.xibuild
blob: a5748ec88b0002f57d20af2e190e904328e221bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

DEPS=(glibc ncurses)

SOURCE=https://sourceforge.net/projects/procps-ng/files/Production/procps-ng-3.3.17.tar.xz
DESC="Utilities for monitoring your system and its processes"

build () {
    ./configure --prefix=/usr                        \
            --docdir=/usr/share/doc/procps-ng-3.3.17 \
            --disable-static                         \
            --disable-kill
    make
    make check
    make DESTDIR=$PKG_DEST install 
}