diff options
author | Robby Workman <rw@rlworkman.net> | 2010-05-13 00:35:37 +0200 |
---|---|---|
committer | Michiel van Wessem <michiel@slackbuilds.org> | 2010-05-13 00:35:37 +0200 |
commit | 516db23a7e5cef1de99baf052990b1e98520949d (patch) | |
tree | 3dda4ae61ef9748e64f02d21c8d31c145ac1a54d /network/arp-scan/arp-scan.SlackBuild | |
parent | 64c392ac4ce9180f35c353c1207603dced221510 (diff) |
network/arp-scan: Updated for version 1.7
Diffstat (limited to 'network/arp-scan/arp-scan.SlackBuild')
-rw-r--r-- | network/arp-scan/arp-scan.SlackBuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/network/arp-scan/arp-scan.SlackBuild b/network/arp-scan/arp-scan.SlackBuild index 66f4fb964b61..f27602999145 100644 --- a/network/arp-scan/arp-scan.SlackBuild +++ b/network/arp-scan/arp-scan.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for arp-scan -# Copyright 2006-2008 Robby Workman, Northport, Alabama, USA +# Copyright 2006-2009 Robby Workman, Northport, Alabama, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -35,10 +35,13 @@ OUTPUT=${OUTPUT:-/tmp} if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" fi set -e @@ -59,6 +62,7 @@ find . \ CFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ --mandir=/usr/man \ --disable-static \ --build=$ARCH-slackware-linux @@ -83,4 +87,4 @@ mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |