wok view aircrack-ng/receipt @ rev 18077

Rebuild Python packages to remove "*.pyc" files from package.lists (part 1).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 22 17:34:18 2015 +0300 (2015-05-22)
parents aa9d73cf312d
children 45507bfb2b0d
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 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.aircrack-ng.org/"
11 WGET_URL="http://download.aircrack-ng.org/$TARBALL"
13 DEPENDS="aircrack-ng-oui iw openssl sqlite zlib pylorcon"
14 BUILD_DEPENDS="sqlite-dev pylorcon openssl-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 sed -i s#/usr/local#/usr#g common.mak || return 1
21 sed -i s#/man/man1#/share/man/man1# common.mak || return 1
23 # fix build with gcc45
24 sed -i s/-Werror// common.mak || return 1
26 make SQLITE=true unstable=true &&
27 make SQLITE=true unstable=true DESTDIR=$DESTDIR install
28 sed -i 's|/usr/local||g' $DESTDIR/usr/sbin/airodump-ng-oui-update
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/sbin $fs/usr
37 }