diff options
author | B. Watson <yalhcru@gmail.com> | 2022-04-08 14:57:00 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-04-09 15:45:11 +0700 |
commit | e569f8d5358a3adff0c1bddf2e8c8c436866e7b6 (patch) | |
tree | 5b393d9bbf4dc0d07d9a4d69f5d2e0f445d28c4a /network | |
parent | a16c8489f3cb6020361f964c9fee09e3ce485f2b (diff) |
network/arping: Fix docs.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r-- | network/arping/arping.SlackBuild | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/network/arping/arping.SlackBuild b/network/arping/arping.SlackBuild index 464dbf136b61..9a9b1be25ab1 100644 --- a/network/arping/arping.SlackBuild +++ b/network/arping/arping.SlackBuild @@ -23,11 +23,13 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20220408 bkw: Modified by SlackBuilds.org, BUILD=2: no INSTALL in doc dir. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=arping VERSION=${VERSION:-2.20} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -39,9 +41,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -78,7 +77,7 @@ find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ -o -perm 511 \) -exec chmod 755 {} \; -o \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+ # We are renaming the installed files arping2 to aviod conflicts with # Slackware's iputils arping so lets fix the manpages and scan script. @@ -112,7 +111,7 @@ for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; r mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ - INSTALL LICENSE README \ + LICENSE README \ $PKG/usr/doc/$PRGNAM-$VERSION install -m644 extra/arping-scan-net.sh $PKG/usr/doc/$PRGNAM-$VERSION/ cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |