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

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
parents 21ab7a6eb192
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="aircrack-ng"
4 VERSION="1.6"
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 cmocka-dev ethtool libnl-dev libpcap-dev libtool
15 openssl-dev pcre-dev python-dev sqlite3-dev zlib-dev"
17 compile_rules()
18 {
19 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 {
33 copy @std
34 DEPENDS="aircrack-ng-oui iw libnl libpcap libpcre libsqlite3
35 openssl python zlib"
36 PROVIDE="aircrack-ng-scripts"
37 }