wok-stable annotate aircrack-ng/receipt @ rev 9244
Add glibc-locale to abiword depends.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sat Mar 12 17:16:42 2011 +0000 (2011-03-12) |
parents | 72a8ac68c219 |
children |
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 |
gokhlayeh@8615 | 18 sed -i s#/usr/local#/usr#g common.mak || return 1 |
gokhlayeh@8615 | 19 sed -i s#/man/man1#/share/man/man1# common.mak || return 1 |
erjo@5896 | 20 |
erjo@5896 | 21 # fix build with gcc45 |
gokhlayeh@8615 | 22 sed -i s/-Werror// common.mak || return 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 |