summaryrefslogtreecommitdiff
path: root/repo/core/psmisc.xibuild
blob: 560cf2063fbf38d7005fc1f12ec334ee7370c658 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

DEPS=(ncurses)

SOURCE=https://gitlab.com/psmisc/psmisc/-/archive/v23.4/psmisc-v23.4.tar.gz
DESC="Miscellaneous procfs tools"

build () {
    ./autogen.sh
    ./configure --prefix=/usr
    make
    make DESTDIR=$PKG_DEST install 
}