wok view airpwn/receipt @ rev 15634

Add SpeedCrunch
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Dec 09 17:44:36 2013 +0200 (2013-12-09)
parents 380ffe05937a
children 41ca42dcfb31
line source
1 # SliTaz package receipt.
3 PACKAGE="airpwn"
4 VERSION="1.4"
5 CATEGORY="network"
6 SHORT_DESC="Airpwn is a tool for generic packet injection on an 802.11 network."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tgz"
10 WEB_SITE="http://airpwn.sourceforge.net"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="pcre libpcap libcrypto openssl lorcon wireless_tools libnet"
14 BUILD_DEPENDS="pcre-dev libpcap-dev libcrypto-dev openssl-dev lorcon-dev \
15 wireless_tools-dev libnet-dev libnet python python-dev autoconf automake"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 # Patch configure to link libcrypto
22 patch -Np1 -i $stuff/link-libcrypto.patch
24 # Fix airpwn files so we can use it with a Python version other than 2.4.
25 PYTHON_VERSION1=$(python -c 'import sys; print sys.version[:3]')
26 PYTHON_VERSION2=$(echo $PYTHON_VERSION1 | tr . _)
28 for FILE in configure.ac conf.h config.h.in; do
29 sed -i "s|python2.4|python${PYTHON_VERSION1}|g" $FILE
30 done
32 autoreconf
33 ./configure \
34 --prefix=/usr \
35 --infodir=/usr/share/info \
36 --mandir=/usr/share/man \
37 $CONFIGURE_ARGS &&
38 make && make DESTDIR=$DESTDIR install
39 }
41 # Rules to gen a SliTaz package suitable for Tazpkg.
42 genpkg_rules()
43 {
44 mkdir -p $fs/usr
45 cp -a $install/usr/sbin $fs/usr
46 }