wok view aircrack-ng/receipt @ rev 5455

Up davfs2 (1.4.6)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 05 17:07:10 2010 +0200 (2010-05-05)
parents c35542f29456
children 72a8ac68c219
line source
1 # SliTaz package receipt.
3 PACKAGE="aircrack-ng"
4 VERSION="1.1"
5 CATEGORY="network"
6 SHORT_DESC="802.11 WEP and WPA-PSK keys cracking program."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.aircrack-ng.org/"
10 WGET_URL="http://download.aircrack-ng.org/$TARBALL"
11 DEPENDS="iw openssl zlib"
12 BUILD_DEPENDS="openssl-dev"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 sed -i s#/usr/local#/usr#g common.mak || exit 1
19 sed -i s#/man/man1#/share/man/man1# common.mak || exit 1
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/sbin $fs/usr
30 }