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

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 
}