wok-next view aircrack-ng/receipt @ rev 21153

Small updates.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 31 16:45:41 2019 +0200 (2019-01-31)
parents ede906abe532
children 029134bbef65
line source
1 # SliTaz package receipt v2.
3 PACKAGE="aircrack-ng"
4 VERSION="1.4"
5 CATEGORY="network"
6 SHORT_DESC="802.11 WEP and WPA-PSK keys cracking program"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.aircrack-ng.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://download.aircrack-ng.org/$TARBALL"
14 BUILD_DEPENDS="automake libtool openssl-dev ethtool libnl-dev python-dev \
15 libpcap-dev pcre-dev sqlite3-dev zlib-dev cmocka-dev"
17 compile_rules() {
18 autoreconf -fiv
20 ./configure \
21 --with-experimental \
22 --with-ext-scripts \
23 $CONFIGURE_ARGS &&
24 fix libtool &&
25 make &&
26 make install || return 1
28 find $install -type f -name '*.pyc' -delete
29 }
31 genpkg_rules() {
32 copy @std
33 DEPENDS="libnl libpcap libpcre libsqlite3 openssl python zlib \
34 aircrack-ng-oui iw"
35 PROVIDE="aircrack-ng-scripts"
36 }