wok view wireless_tools/receipt @ rev 15363

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 03 09:52:57 2013 +0000 (2013-10-03)
parents be13f25e790b
children e1d1bc3c15d0
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="http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html"
12 WGET_URL="http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/$TARBALL"
13 TAGS="wireless"
15 DEPENDS=""
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 make PREFIX=$DESTDIR/usr
22 make PREFIX=$DESTDIR/usr install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib $fs/usr/bin $fs/usr/share/applications
29 cp -a $install/usr/sbin $fs/usr
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }
33 post_install()
34 {
35 echo "You may need to install linux-wireless to have wireless network drivers."
36 echo "Or install tazndis to use Windows drivers."
37 }
38 # Rules to clean extras dirs or files
39 clean_wok()
40 {
41 rm -rf $WOK/$PACKAGE/${PACKAGE}.${VERSION}
42 }