summaryrefslogtreecommitdiff
path: root/opt/psmisc/MAKEPKG
blob: d75f990ffbece488e62feaa2a85f3ec26be16e90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/mkpkg
# description: Process management utilities (killall, fuser, pstree)
# url: https://gitlab.com/psmisc/psmisc

name=psmisc
version=23.7
release=1
depends=(ncurses)
makedeps=(autoconf automake gettext m4 perl)
source=(https://gitlab.com/psmisc/$name/-/archive/v$version/$name-v$version.tar.gz)
lockbox=(make)
sha256sums=(
    "8f2526ce7ac6ef4976454cd63095fa10e467ef745cf33dc4f91df0bd7b10b905"
)

build() {
    cd $name-v$version
    
    ./autogen.sh
    ./configure --prefix=/usr --disable-nls
    make
    make DESTDIR=$PKG install
    rm -f $PKG/usr/bin/pstree.x11
}

signify() {
    untrusted comment: public key
    RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}

# vim: filetype=sh