wok-next view wireless_tools/receipt @ rev 20496

Packages with tag "Xfce": fix (b)deps
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 14 17:14:32 2018 +0200 (2018-03-14)
parents 7ae7ca392d9e
children 1eb4aacb48ed
line source
1 # SliTaz package receipt v2.
3 PACKAGE="wireless_tools"
4 VERSION="29"
5 CATEGORY="system-tools"
6 SHORT_DESC="Wireless Tools for Linux"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://hewlettpackard.github.io/wireless-tools/Tools.html"
10 TAGS="wireless wifi network"
11 SUGGESTED="linux-wireless"
13 TARBALL="$PACKAGE.$VERSION.tar.gz"
14 WGET_URL="https://hewlettpackard.github.io/wireless-tools/$TARBALL"
16 SPLIT="wireless_tools-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 sed -i 's|PREFIX)/man|PREFIX)/share/man|' Makefile
22 make CC=${HOST_SYSTEM}-gcc PREFIX=$DESTDIR/usr &&
23 make PREFIX=$DESTDIR/usr install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 case $PACKAGE in
30 wireless_tools) copy @std;;
31 *-dev) copy @dev;;
32 esac
33 }
35 post_install_wireless_tools()
36 {
37 [ -n "$quiet" ] && return
38 cat <<EOT
39 You may need to install linux-wireless to have wireless network drivers.
40 Or install tazndis to use Windows drivers.
41 EOT
42 }