diff options
Diffstat (limited to 'source/ap/lsof/lsof.SlackBuild')
-rwxr-xr-x | source/ap/lsof/lsof.SlackBuild | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/source/ap/lsof/lsof.SlackBuild b/source/ap/lsof/lsof.SlackBuild index 4320a1fa5..e8d552e62 100755 --- a/source/ap/lsof/lsof.SlackBuild +++ b/source/ap/lsof/lsof.SlackBuild @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2008, 2009, 2010, 2018 Patrick J. Volkerding, Sebeka, Minnesota, USA +# Copyright 2008, 2009, 2010, 2018, 2019 Patrick J. Volkerding, Sebeka, Minnesota, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,8 +23,8 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=lsof -VERSION=${VERSION:-$(echo lsof_*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d _ | rev)} -BUILD=${BUILD:-2} +VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} +BUILD=${BUILD:-1} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -51,11 +51,9 @@ rm -rf $PKG mkdir -p $TMP $PKG cd $TMP -rm -rf lsof_$VERSION -tar xvf $CWD/lsof_$VERSION.tar.?z || exit 1 -cd lsof_$VERSION || exit 1 -tar xvf lsof_${VERSION}_src.tar || exit 1 -cd lsof_${VERSION}_src || exit 1 +rm -rf lsof-$VERSION +tar xvf $CWD/lsof-$VERSION.tar.?z || exit 1 +cd lsof-$VERSION || exit 1 chown -R root:root . find . \ @@ -72,7 +70,7 @@ cat lsof > $PKG/usr/bin/lsof # No, NOT suid. chmod 755 $PKG/usr/bin/lsof mkdir -p $PKG/usr/man/man8 -cat lsof.8 | gzip -9c > $PKG/usr/man/man8/lsof.8.gz +cat Lsof.8 | gzip -9c > $PKG/usr/man/man8/lsof.8.gz mkdir -p $PKG/usr/doc/lsof-$VERSION cp -a 00* $PKG/usr/doc/lsof-$VERSION chmod 644 $PKG/usr/doc/lsof-$VERSION/* |