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

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 26 08:20:18 2019 +0100 (2019-02-26)
parents 20661c276bcf
children b01314c762e9
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 configure and make the package.
15 compile_rules()
16 {
17 # get the logic from airodump-ng-oui-update + dos2unix & sort
18 mkdir -p $install/etc/aircrack-ng
19 grep '(hex)' $TARBALL \
20 | sed 's/^[ \t]*//g;s/[ \t]*$//g' \
21 | dos2unix \
22 | sort \
23 > $install/etc/aircrack-ng/airodump-ng-oui.txt
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cp -a $install/etc $fs
30 }