wok annotate aircrack-ng/receipt @ rev 1236

Add psycopg
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 11 11:01:30 2008 +0000 (2008-08-11)
parents 2b684895ee85
children f686472ad1af
rev   line source
pascal@1033 1 # SliTaz package receipt.
pascal@1033 2
pascal@1033 3 PACKAGE="aircrack-ng"
pascal@1033 4 VERSION="1.0-rc1"
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@1110 11 DEPENDS="iw"
pascal@1033 12
pascal@1033 13 # Rules to configure and make the package.
pascal@1033 14 compile_rules()
pascal@1033 15 {
pascal@1033 16 cd $src
pascal@1033 17 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1033 18 --mandir=/usr/share/man $CONFIGURE_ARGS
pascal@1033 19 make
pascal@1033 20 make DESTDIR=$PWD/_pkg install
pascal@1033 21 }
pascal@1033 22
pascal@1033 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1033 24 genpkg_rules()
pascal@1033 25 {
pascal@1033 26 mkdir -p $fs/usr
pascal@1033 27 cp -a $_pkg/usr/local/bin $fs/usr
pascal@1033 28 cp -a $_pkg/usr/local/sbin $fs/usr
pascal@1033 29 }
pascal@1033 30