opt/lsof/Pkgfile

21 lines
465 B
Plaintext
Raw Normal View History

2006-02-25 10:55:18 +01:00
# Description: list open files
2022-10-11 12:04:32 +02:00
# URL: https://github.com/lsof-org/lsof
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: libtirpc
2006-02-25 10:55:18 +01:00
name=lsof
2023-01-25 11:12:31 +01:00
version=4.98.0
2020-12-13 12:43:00 +01:00
release=1
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() {
2022-10-11 12:04:32 +02:00
cd $name-$version
2020-05-22 12:24:39 +02:00
2022-10-11 12:04:32 +02:00
./Configure -n linux
make CC="cc $CFLAGS"
2020-05-22 12:24:39 +02:00
2022-10-11 12:04:32 +02:00
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
}