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

updated tinc (1.0.25 -> 1.0.36)
author Hans-G?nter Theisgen
date Wed May 13 07:41:00 2020 +0100 (2020-05-13)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="aircrack-ng-oui"
4 VERSION="20180930"
5 CATEGORY="misc"
6 SHORT_DESC="Archive of oui.txt file for airdump-ng"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://standards.ieee.org/products-services/regauth/oui/index.html"
10 HOST_ARCH="any"
12 TARBALL="oui-$VERSION.txt"
13 WGET_URL="http://standards-oui.ieee.org/oui.txt"
15 compile_rules() {
16 # get the logic from airodump-ng-oui-update + dos2unix & sort
17 mkdir -p $install/etc/aircrack-ng
18 grep '(hex)' $TARBALL \
19 | sed 's/^[ \t]*//g;s/[ \t]*$//g' \
20 | dos2unix \
21 | sort \
22 > $install/etc/aircrack-ng/airodump-ng-oui.txt
23 }