lsof: update to 4.93.2

This commit is contained in:
Juergen Daubert 2019-07-30 15:40:47 +02:00
parent f1d4188eba
commit f3658f9b35
2 changed files with 8 additions and 10 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/QG5WdHRuQlEYBo/r/EGUYCOemuj7SGVCdNuv1/TUtA39+xUwM2G2u25BRVQSM6MUTNqPz5i5HW+Tn8cp6iCNgw=
SHA256 (Pkgfile) = 747b4121ccfa3e4016f1d2ad33ecc24e2c320a7af5021c4d2b8d4f1dabace5ff
RWSE3ohX2g5d/SkTwR5KqsyoZdH2b0cKzr+8YkLvnWDM27nfrKvKs0gLQJRvvt29kwnIFdzeblKghVFD2IRBe7sw7/vmneT9cgs=
SHA256 (Pkgfile) = 8b3cfc905abd3bd88616736a51395034c433662b2e48d08b2d9cf3100ca7dbc3
SHA256 (.footprint) = 96955c2b8db524dff639fc12c2b50fbf1ac8fb0049828b76aa7da8fd8628c06b
SHA256 (lsof_4.91.tar.bz2) = c9da946a525fbf82ff80090b6d1879c38df090556f3fe0e6d782cb44172450a3
SHA256 (lsof-4.93.2.tar.gz) = 3df912bd966fc24dc73ddea3e36a61d79270b21b085936a4caabca56e5b486a2

View File

@ -1,20 +1,18 @@
# Description: list open files
# URL: http://people.freebsd.org/~abe/
# URL: https://github.com/lsof-org/lsof
# Maintainer: Thomas Penteker, tek at serverop dot de
# Packager: sten, nick dot steeves at shaw dot ca
name=lsof
version=4.91
version=4.93.2
release=1
source=(ftp://ftp.fu-berlin.de/pub/unix/tools/lsof/lsof_$version.tar.bz2)
source=(https://github.com/lsof-org/lsof/archive/$version/$name-$version.tar.gz)
build() {
cd lsof_${version}
tar -xf lsof_${version}_src.tar
cd lsof_${version}_src
cd $name-$version
yes "" | ./Configure linux
sed -i -e "s/-DLINUXV/${CFLAGS} -DLINUXV/" Makefile
make
install -D -m 755 lsof $PKG/usr/sbin/lsof
install -D -m 644 lsof.8 $PKG/usr/share/man/man8/lsof.8
install -D -m 644 Lsof.8 $PKG/usr/share/man/man8/lsof.8
}