wok view aircrack-ng/receipt @ rev 1890

udev: add BUILD_WARNING about hal
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Dec 18 10:53:19 2008 +0000 (2008-12-18)
parents 7d6929ba1a74
children 0b800967f060
line source
1 # SliTaz package receipt.
3 PACKAGE="aircrack-ng"
4 VERSION="1.0-rc1"
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"
12 BUILD_DEPENDS="openssl-dev"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 make &&
19 make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
26 cp -a $_pkg/usr/local/bin $fs/usr
27 cp -a $_pkg/usr/local/sbin $fs/usr
28 }