wok annotate ndiswrapper-driver/receipt @ rev 3575

Add python-pyyaml
author Liu Peng <rocky@slitaz.org>
date Fri Jun 26 01:17:10 2009 +0000 (2009-06-26)
parents f306d126580e
children 233ec9b6af94
rev   line source
erjo@1851 1 # SliTaz package receipt.
erjo@1851 2
erjo@1851 3 PACKAGE="ndiswrapper-driver"
pascal@2997 4 VERSION="1.54"
erjo@1851 5 CATEGORY="system-tools"
erjo@1851 6 SHORT_DESC="Add Windows network drivers support to Linux kernel."
erjo@1851 7 MAINTAINER="erjo@slitaz.org"
pascal@1885 8 DEPENDS="linux lzma"
erjo@1851 9 BUILD_DEPENDS="slitaz-toolchain"
erjo@1851 10 SOURCE="ndiswrapper"
erjo@1851 11 TARBALL="$SOURCE-$VERSION.tar.gz"
erjo@1851 12 WEB_SITE="http://ndiswrapper.sourceforge.net/joomla/"
erjo@1851 13 WGET_URL="http://dfn.dl.sourceforge.net/sourceforge/ndiswrapper/$TARBALL
erjo@1851 14 http://puzzle.dl.sourceforge.net/sourceforge/ndiswrapper/$TARBALL"
erjo@1851 15
erjo@1851 16 # Rules to configure and make the package.
erjo@1851 17 compile_rules()
erjo@1851 18 {
erjo@1851 19
erjo@1851 20 KERNEL_VERSION=`grep ^VERSION= $WOK/linux/receipt | cut -d "=" -f2 | sed -e 's/"//g'`
erjo@1851 21 if [ ! -d $WOK/linux/linux-$KERNEL_VERSION ]; then
erjo@1851 22 tazwok cook linux
erjo@1851 23 fi
erjo@1851 24 cd $src
erjo@1851 25 make KBUILD=$WOK/linux/linux-$KERNEL_VERSION KVER=$KERNEL_VERSION
erjo@1851 26 }
erjo@1851 27
erjo@1851 28 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1851 29 genpkg_rules()
erjo@1851 30 {
erjo@1851 31 KERNEL_VERSION=`grep ^VERSION= $WOK/linux/receipt | cut -d "=" -f2 | sed -e 's/"//g'`
erjo@1851 32 EXTRAVERSION=_$KERNEL_VERSION
erjo@1851 33
erjo@1851 34 mkdir -p $fs/usr/sbin $fs/sbin $fs/lib/modules/$KERNEL_VERSION-slitaz/kernel/misc
erjo@1851 35
erjo@1851 36 # Install utilities
erjo@1851 37 install -o root -m 755 $src/utils/loadndisdriver $fs/sbin/
erjo@1851 38 strip -s $fs/sbin/load*
erjo@1851 39
erjo@1851 40 # Compress and install module
erjo@1851 41 #./stuff/gztazmod.sh $fs/lib/modules/$VERSION-slitaz
pascal@1885 42 lzma e $src/driver/ndiswrapper.ko \
pascal@1885 43 $fs/lib/modules/$KERNEL_VERSION-slitaz/kernel/misc/ndiswrapper.ko.gz
pascal@1885 44 chown root $fs/lib/modules/$KERNEL_VERSION-slitaz/kernel/misc/ndiswrapper.ko.gz
pascal@1885 45 chmod O644 $fs/lib/modules/$KERNEL_VERSION-slitaz/kernel/misc/ndiswrapper.ko.gz
erjo@1851 46 }
erjo@1851 47
erjo@1851 48 post_install()
erjo@1851 49 {
erjo@1851 50 echo "Processing post-install commands..."
pascal@2926 51 chroot "$1/" depmod -a ${EXTRAVERSION#_}-slitaz
erjo@1851 52 }
erjo@1851 53
erjo@1851 54 post_remove()
erjo@1851 55 {
erjo@1851 56 echo "Processing post-remove commands..."
erjo@1851 57 depmod -a
erjo@1851 58 }