wok-next annotate aircrack-ng/receipt @ rev 7095
Up: gtkmm to 2.22.0.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Wed Nov 03 03:34:59 2010 +0000 (2010-11-03) |
parents | b735ac9efe64 |
children | 0b4cf0d9e1b5 |
rev | line source |
---|---|
pascal@1033 | 1 # SliTaz package receipt. |
pascal@1033 | 2 |
pascal@1033 | 3 PACKAGE="aircrack-ng" |
slaxemulator@5388 | 4 VERSION="1.1" |
pascal@1033 | 5 CATEGORY="network" |
pascal@1033 | 6 SHORT_DESC="802.11 WEP and WPA-PSK keys cracking program." |
pascal@1033 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@1033 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@1033 | 9 WEB_SITE="http://www.aircrack-ng.org/" |
pascal@1033 | 10 WGET_URL="http://download.aircrack-ng.org/$TARBALL" |
pascal@2491 | 11 DEPENDS="iw openssl zlib" |
pascal@1443 | 12 BUILD_DEPENDS="openssl-dev" |
pascal@1033 | 13 |
pascal@1033 | 14 # Rules to configure and make the package. |
pascal@1033 | 15 compile_rules() |
pascal@1033 | 16 { |
pascal@1033 | 17 cd $src |
pankso@4055 | 18 sed -i s#/usr/local#/usr#g common.mak || exit 1 |
pankso@4055 | 19 sed -i s#/man/man1#/share/man/man1# common.mak || exit 1 |
erjo@5896 | 20 |
erjo@5896 | 21 # fix build with gcc45 |
erjo@5896 | 22 sed -i s/-Werror// common.mak || exit 1 |
erjo@5896 | 23 |
pascal@1443 | 24 make && |
pascal@1033 | 25 make DESTDIR=$PWD/_pkg install |
pascal@1033 | 26 } |
pascal@1033 | 27 |
pascal@1033 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1033 | 29 genpkg_rules() |
pascal@1033 | 30 { |
pascal@1033 | 31 mkdir -p $fs/usr |
pankso@4055 | 32 cp -a $_pkg/usr/bin $fs/usr |
pankso@4055 | 33 cp -a $_pkg/usr/sbin $fs/usr |
pascal@1033 | 34 } |
pascal@1033 | 35 |