wok view aircrack-ng-oui/receipt @ rev 20682

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jan 27 17:42:10 2019 +0100 (2019-01-27)
parents f4c22f009037
children aa1584474883
line source
1 # SliTaz package receipt.
3 PACKAGE="aircrack-ng-oui"
4 VERSION="20190127"
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="https://standards.ieee.org/products-services/regauth/oui/index.html"
10 TARBALL="oui-$VERSION.txt"
11 WGET_URL="http://standards-oui.ieee.org/oui.txt"
12 HOST_ARCH="any"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 # get the logic from airodump-ng-oui-update + dos2unix & sort
18 mkdir -p $fs/etc/aircrack-ng
19 grep '(hex)' $TARBALL \
20 | sed 's/^[ \t]*//g;s/[ \t]*$//g' \
21 | dos2unix \
22 | sort \
23 > $etc/etc/aircrack-ng/airodump-ng-oui.txt
24 }