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

MAKEDEPS=(make)
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
}

package () {
    make DESTDIR=$PKG_DEST install 
}