wok view wireless_tools/receipt @ rev 22434

Add sshrc (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 21 12:20:01 2019 +0100 (2019-12-21)
parents 4a9972597002
children ee53899c6189
line source
1 # SliTaz package receipt.
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 SUGGESTED="linux-wireless"
10 TARBALL="${PACKAGE}.${VERSION}.tar.gz"
11 WEB_SITE="https://hewlettpackard.github.io/wireless-tools/Tools.html"
12 WGET_URL="http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/$TARBALL"
13 HOST_ARCH="i486 arm"
15 TAGS="wireless wifi network"
16 DEPENDS=""
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 mkdir -p $fs/usr/lib $fs/usr/bin
30 cp -a $install/usr/sbin $fs/usr
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }
34 post_install()
35 {
36 [ -z "$quiet" ] && cat <<EOT
37 You may need to install linux-wireless to have wireless network drivers.
38 Or install tazndis to use Windows drivers.
39 EOT
40 true
41 }
43 # Rules to clean extras dirs or files
44 clean_wok()
45 {
46 rm -rf $WOK/$PACKAGE/${PACKAGE}.${VERSION}
47 }