mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
network/macchanger: Updated for version 1.5.0
This commit is contained in:
parent
c4770a30f0
commit
714cae15e0
3 changed files with 15 additions and 4 deletions
|
@ -13,6 +13,7 @@ VERSION=1.5.0
|
|||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
|
@ -22,8 +23,13 @@ DOCS="AUTHORS COPYING INSTALL NEWS README ChangeLog"
|
|||
|
||||
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
|
||||
|
||||
rm -rf $PKG
|
||||
|
@ -38,14 +44,17 @@ chmod -R u+w,go+r-w,a-s .
|
|||
CFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--mandir=/usr/man \
|
||||
--build=$ARCH-slackware-linux \
|
||||
|| exit 1
|
||||
|
||||
make || exit 1
|
||||
make install DESTDIR=$PKG || exit 1
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
|
||||
xargs strip --strip-unneeded 2> /dev/null
|
||||
)
|
||||
|
||||
( cd $PKG/usr/man
|
||||
|
@ -64,4 +73,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}
|
||||
|
|
|
@ -2,7 +2,9 @@ PRGNAM="macchanger"
|
|||
VERSION="1.5.0"
|
||||
HOMEPAGE="http://www.alobbs.com/macchanger"
|
||||
DOWNLOAD="ftp://ftp.gnu.org/gnu/macchanger/macchanger-1.5.0.tar.gz"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM="79b7cdaeca3d8ebafa764c4b0dd03ab7"
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Kevin Myers"
|
||||
EMAIL="jwblack@cox.net"
|
||||
APPROVED="rworkman"
|
||||
|
|
|
@ -5,13 +5,13 @@
|
|||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
macchanger: macchanger (utility for viewing/manipulating the MAC address)
|
||||
macchanger:
|
||||
macchanger: This is a GNU/Linux Utility for viewing/manipulating the MAC
|
||||
macchanger: address of network interfaces.
|
||||
macchanger:
|
||||
macchanger: http://www.alobbs.org/macchanger
|
||||
macchanger: Homepage: http://www.alobbs.org/macchanger
|
||||
macchanger:
|
||||
macchanger:
|
||||
macchanger:
|
||||
|
|
Loading…
Reference in a new issue