wok-next view aircrack-ng-oui/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents f4c22f009037
children 6fe02d53a2a2
line source
1 # SliTaz package receipt v2.
3 PACKAGE="aircrack-ng-oui"
4 VERSION="20171029"
5 CATEGORY="misc"
6 SHORT_DESC="Archive of oui.txt file for airdump-ng"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="http://standards.ieee.org/regauth/oui"
11 TARBALL="oui-$VERSION.txt"
12 WGET_URL="http://standards-oui.ieee.org/oui.txt"
14 compile_rules() {
15 # get the logic from airodump-ng-oui-update + dos2unix & sort
16 mkdir -p $install/etc/aircrack-ng
17 grep '(hex)' $TARBALL \
18 | sed 's/^[ \t]*//g;s/[ \t]*$//g' \
19 | dos2unix \
20 | sort \
21 > $install/etc/aircrack-ng/airodump-ng-oui.txt
22 }
24 genpkg_rules() {
25 copy @std
26 }