wok view aircrack-ng/receipt @ rev 1094

linux-source: fix removal
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jul 17 11:23:56 2008 +0000 (2008-07-17)
parents
children 7d6929ba1a74
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 #http://patches.aircrack-ng.org/
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man $CONFIGURE_ARGS
19 make
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/local/bin $fs/usr
28 cp -a $_pkg/usr/local/sbin $fs/usr
29 }