wok view ndiswrapper/receipt @ rev 777

get-b43-firmware: user should have to 'get-b43-firmware' to have wlan0 working out-of-the-box
author Christophe Lincoln <pankso@slitaz.org>
date Mon May 12 17:27:29 2008 +0200 (2008-05-12)
parents e8a7c24fcf1d
children a075ff895254
line source
1 # SliTaz package receipt.
3 PACKAGE="ndiswrapper"
4 VERSION="1.52"
5 CATEGORY="system-tools"
6 SHORT_DESC="Add Windows network drivers support to Linux kernel."
7 MAINTAINER="Erjo <erjo@slitaz.org>"
8 DEPENDS="perl"
9 #WANTED="linux"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://ndiswrapper.sourceforge.net/joomla/"
12 WGET_URL="http://dfn.dl.sourceforge.net/sourceforge/ndiswrapper/$TARBALL
13 http://puzzle.dl.sourceforge.net/sourceforge/ndiswrapper/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
19 KERNEL_VERSION=`grep ^VERSION= $WOK/linux/receipt | cut -d "=" -f2 | sed -e 's/"//g`
20 if [ ! -d $WOK/linux/linux-$KERNEL_VERSION ]; then
21 tazwok cook linux
22 fi
23 cd $src
24 make KBUILD=$WOK/linux/linux-$KERNEL_VERSION KVER=$KERNEL_VERSION
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 KERNEL_VERSION=`grep ^VERSION= $WOK/linux/receipt | cut -d "=" -f2 | sed -e 's/"//g`
32 mkdir -p $fs/usr/sbin $fs/sbin $fs/lib/modules/$KERNEL_VERSION-slitaz/kernel/misc
34 # Install utilities
35 install -o root -m 755 $src/utils/loadndisdriver $fs/sbin/
36 install -o root -m 755 $src/utils/ndiswrapper $fs/usr/sbin/
37 install -o root -m 755 $src/utils/ndiswrapper-buginfo $fs/usr/sbin/
38 strip -s $fs/sbin/load*
40 # Compress and install module
41 #./stuff/gztazmod.sh $fs/lib/modules/$VERSION-slitaz
42 install -o root -m O644 $src/driver/ndiswrapper.ko $fs/lib/modules/$KERNEL_VERSION-slitaz/kernel/misc
43 }
45 post_install()
46 {
47 echo "Processing post-install commands..."
48 depmod -a
49 }
51 post_remove()
52 {
53 echo "Processing post-remove commands..."
54 depmod -a
55 }