mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
network/aircrack-ng: Updated for version 1.0_rc2
This commit is contained in:
parent
a15f131453
commit
803cbb602b
3 changed files with 9 additions and 14 deletions
|
@ -4,7 +4,4 @@ FMS attack along with some optimizations like KoreK attacks, thus making the
|
|||
attack much faster compared to other WEP cracking tools. In fact, aircrack is
|
||||
a set of tools for auditing wireless networks.
|
||||
|
||||
NOTE: This SlackBuild depends on SQLite, also found on slackbuilds.org
|
||||
If you wish to build without SQLite simply pass OPT=" " to the SlackBuild.
|
||||
|
||||
WARNING: Only to be used for surveillance of your own network. Use with care.
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Written by Yalla-One <yallaone@gmail.com>
|
||||
|
||||
PRGNAM=aircrack-ng
|
||||
VERSION=1.0_beta2
|
||||
VERSION=1.0_rc2
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
@ -45,19 +45,17 @@ make ${OPT}
|
|||
make prefix=/usr ${OPT} install DESTDIR=$PKG
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
find . | xargs file | grep "shared object" | 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 || true
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
|
||||
xargs strip --strip-unneeded 2> /dev/null
|
||||
)
|
||||
|
||||
# Compress man pages
|
||||
( cd $PKG/usr/man
|
||||
find . -type f -exec gzip -9 {} \;
|
||||
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
)
|
||||
|
||||
# Compress info pages and remove the package's dir file
|
||||
rm -f $PKG/usr/info/dir
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="aircrack-ng"
|
||||
VERSION="1.0_beta2"
|
||||
VERSION="1.0_rc2"
|
||||
HOMEPAGE="http://www.aircrack-ng.org"
|
||||
DOWNLOAD="http://download.aircrack-ng.org/aircrack-ng-1.0-beta2.tar.gz"
|
||||
MD5SUM="66017aad4f23153419fdb04c83e65aaf"
|
||||
DOWNLOAD="http://download.aircrack-ng.org/aircrack-ng-1.0-rc2.tar.gz"
|
||||
MD5SUM="e7e4ed85962e19f68ac3e00b0286467c"
|
||||
MAINTAINER="Yalla-One"
|
||||
EMAIL="yallaone@gmail.com"
|
||||
APPROVED="David Somero,rworkman"
|
||||
APPROVED="rworkman"
|
||||
|
|
Loading…
Reference in a new issue