wok view airsnort/receipt @ rev 19055

Woodland is a nature theme for Openbox.
author Leonardo Laporte <hackdorte@sapo.pt>
date Tue Apr 19 20:20:45 2016 -0300 (2016-04-19)
parents 5462e43ce103
children 45507bfb2b0d
line source
1 # SliTaz package receipt.
3 PACKAGE="airsnort"
4 VERSION="0.2.7e"
5 CATEGORY="network"
6 SHORT_DESC="A wireless LAN (WLAN) tool which recovers encryption keys."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://airsnort.shmoo.com/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="gtk+ libpcap"
14 BUILD_DEPENDS="gtk+-dev libpcap-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }