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

DEPS=(ncurses)

PKG_VER=23.4
SOURCE=https://gitlab.com/psmisc/psmisc/-/archive/v$PKG_VER/psmisc-v$PKG_VER.tar.gz
DESC="Miscellaneous procfs tools"

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