wok annotate airpwn/receipt @ rev 20235

busybox: add arch (uname -m alias)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 05 15:52:59 2018 +0100 (2018-03-05)
parents 45507bfb2b0d
children 5f6c5106b1f5
rev   line source
slaxemulator@7180 1 # SliTaz package receipt.
slaxemulator@7180 2
slaxemulator@7180 3 PACKAGE="airpwn"
slaxemulator@7180 4 VERSION="1.4"
slaxemulator@7180 5 CATEGORY="network"
slaxemulator@7180 6 SHORT_DESC="Airpwn is a tool for generic packet injection on an 802.11 network."
slaxemulator@7180 7 MAINTAINER="slaxemulator@gmail.com"
pascal@15000 8 LICENSE="GPL2"
al@19275 9 WEB_SITE="http://airpwn.sourceforge.net"
slaxemulator@7180 10 TARBALL="$PACKAGE-$VERSION.tgz"
slaxemulator@7180 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
slaxemulator@7180 12
pascal@15000 13 DEPENDS="pcre libpcap libcrypto openssl lorcon wireless_tools libnet"
pascal@15020 14 BUILD_DEPENDS="pcre-dev libpcap-dev libcrypto-dev openssl-dev lorcon-dev \
pascal@15020 15 wireless_tools-dev libnet-dev libnet python python-dev autoconf automake"
pascal@15000 16
slaxemulator@7180 17 # Rules to configure and make the package.
slaxemulator@7180 18 compile_rules()
slaxemulator@7180 19 {
slaxemulator@7180 20 # Patch configure to link libcrypto
pankso@9699 21 patch -Np1 -i $stuff/link-libcrypto.patch
slaxemulator@7180 22
slaxemulator@7180 23 # Fix airpwn files so we can use it with a Python version other than 2.4.
slaxemulator@7180 24 PYTHON_VERSION1=$(python -c 'import sys; print sys.version[:3]')
slaxemulator@7180 25 PYTHON_VERSION2=$(echo $PYTHON_VERSION1 | tr . _)
slaxemulator@7180 26
slaxemulator@7180 27 for FILE in configure.ac conf.h config.h.in; do
slaxemulator@7180 28 sed -i "s|python2.4|python${PYTHON_VERSION1}|g" $FILE
slaxemulator@7180 29 done
slaxemulator@7180 30
slaxemulator@7180 31 autoreconf
pascal@17761 32 automake --add-missing
slaxemulator@7180 33 ./configure \
slaxemulator@7180 34 --prefix=/usr \
slaxemulator@7180 35 --infodir=/usr/share/info \
slaxemulator@7180 36 --mandir=/usr/share/man \
slaxemulator@7180 37 $CONFIGURE_ARGS &&
pascal@15000 38 make && make DESTDIR=$DESTDIR install
slaxemulator@7180 39 }
slaxemulator@7180 40
slaxemulator@7180 41 # Rules to gen a SliTaz package suitable for Tazpkg.
slaxemulator@7180 42 genpkg_rules()
slaxemulator@7180 43 {
slaxemulator@7180 44 mkdir -p $fs/usr
pascal@15000 45 cp -a $install/usr/sbin $fs/usr
slaxemulator@7180 46 }