wok view airpwn/receipt @ rev 20255

firefox, thunderbird: try to force i686
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 21:40:37 2018 +0100 (2018-03-13)
parents 45507bfb2b0d
children 5f6c5106b1f5
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 WEB_SITE="http://airpwn.sourceforge.net"
10 TARBALL="$PACKAGE-$VERSION.tgz"
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 # Patch configure to link libcrypto
21 patch -Np1 -i $stuff/link-libcrypto.patch
23 # Fix airpwn files so we can use it with a Python version other than 2.4.
24 PYTHON_VERSION1=$(python -c 'import sys; print sys.version[:3]')
25 PYTHON_VERSION2=$(echo $PYTHON_VERSION1 | tr . _)
27 for FILE in configure.ac conf.h config.h.in; do
28 sed -i "s|python2.4|python${PYTHON_VERSION1}|g" $FILE
29 done
31 autoreconf
32 automake --add-missing
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 }