blob: 004e11967e3e7ea73cb818ef0d2e9b207549807b (
plain)
1 # Description: Small utilities that use the /proc filesystem
2 # URL: https://gitlab.com/psmisc/psmisc
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Depends on: ncurses
5
6 name=psmisc
7 version=23.5
8 release=1
9 source=(http://downloads.sourceforge.net/project/$name/$name/$name-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13 export LINGUAS=' '
14 ./configure --prefix=/usr --disable-nls
15 make
16 make DESTDIR=$PKG install
17 rm $PKG/usr/bin/pstree.x11
18 }
|