wok view iw/receipt @ rev 5054

fix udev: create /dev/bus/usb for usb devices
author Rohit Joshi <jozee@slitaz.org>
date Sat Mar 06 18:57:02 2010 +0000 (2010-03-06)
parents 0258e84c532f
children 6dc0a4bbd74f
line source
1 # SliTaz package receipt.
3 PACKAGE="iw"
4 VERSION="0"
5 CATEGORY="network"
6 SHORT_DESC="Wireless configuration tool."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE.tar.bz2"
9 WEB_SITE="http://www.aircrack-ng.org/"
10 WGET_URL="http://dl.aircrack-ng.org/$TARBALL"
11 DEPENDS="libnl"
12 BUILD_DEPENDS="libnl-dev"
13 TAGS="wireless"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 mkdir $PACKAGE-$VERSION
19 mv *.c $src && mv *.h $src
20 mv Makefile $src && mv COPYING $src
21 cd $src
22 make
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cp -a $_pkg/sbin $fs
30 }