opt/lsof/Pkgfile

20 lines
473 B
Plaintext
Raw Normal View History

2006-02-25 10:55:18 +01:00
# Description: list open files
2019-07-30 15:40:47 +02:00
# URL: https://github.com/lsof-org/lsof
2010-02-28 02:59:07 +01:00
# Maintainer: Thomas Penteker, tek at serverop dot de
2006-02-25 10:55:18 +01:00
name=lsof
2019-07-30 15:40:47 +02:00
version=4.93.2
2020-05-22 12:24:39 +02:00
release=2
2019-07-30 15:40:47 +02:00
source=(https://github.com/lsof-org/lsof/archive/$version/$name-$version.tar.gz)
2006-02-25 10:55:18 +01:00
build() {
2019-07-30 15:40:47 +02:00
cd $name-$version
2020-05-22 12:24:39 +02:00
./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
2006-02-25 10:55:18 +01:00
}