20 lines
473 B
Plaintext
20 lines
473 B
Plaintext
# Description: list open files
|
|
# URL: https://github.com/lsof-org/lsof
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
|
|
name=lsof
|
|
version=4.93.2
|
|
release=2
|
|
source=(https://github.com/lsof-org/lsof/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./Configure -n linux
|
|
make CC="cc $CFLAGS"
|
|
|
|
install -d $PKG/usr/{sbin,share/man/man8}
|
|
install -m 755 lsof $PKG/usr/sbin
|
|
soelim Lsof.8 > $PKG/usr/share/man/man8/lsof.8
|
|
}
|