blob: 8fbac0871c80ffd75f7579048e35e223f5613c34 (
plain)
1 # Description: list open files
2 # URL: https://github.com/lsof-org/lsof
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: libtirpc
5
6 name=lsof
7 version=4.96.5
8 release=1
9 source=(https://github.com/lsof-org/lsof/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 ./Configure -n linux
15 make CC="cc $CFLAGS"
16
17 install -d $PKG/usr/{sbin,share/man/man8}
18 install -m 755 lsof $PKG/usr/sbin
19 soelim Lsof.8 > $PKG/usr/share/man/man8/lsof.8
20 }
|