wok annotate linux-usb-misc/receipt @ rev 9700

Replaced all ../stuff with $stuff.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun May 08 09:01:58 2011 +0000 (2011-05-08)
parents 1d89aa1672da
children 6f536abe4f0b
rev   line source
pascal@3316 1 # SliTaz package receipt.
pascal@3316 2
pascal@3316 3 PACKAGE="linux-usb-misc"
slaxemulator@8085 4 VERSION="2.6.37"
pascal@3316 5 CATEGORY="base-system"
pascal@3316 6 SHORT_DESC="The Linux kernel misc. USB drivers, including the Lego USB tower."
pascal@3316 7 MAINTAINER="rcx@zoominternet.net"
pascal@3316 8 WANTED="linux"
pascal@3316 9 WEB_SITE="http://www.kernel.org/"
pascal@3316 10
pascal@3316 11 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@3316 12 genpkg_rules()
pascal@3316 13 {
pascal@3316 14 local path
pascal@3316 15 path=lib/modules/$VERSION-slitaz/kernel
pascal@3316 16 mkdir -p $fs/$path
pascal@3316 17 export src
pascal@3316 18 export _pkg
slaxemulator@9700 19 $wanted_stuff/list_modules.sh drivers/usb/misc | while read module; do
pascal@3316 20 dir=$path/$(dirname $module)
pascal@3316 21 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@3316 22 cp -a $_pkg/$path/$module $fs/$dir
pascal@3316 23 done
pascal@3316 24
pascal@3316 25 }
pascal@3316 26
pascal@3316 27 # Post install/remove commands for Tazpkg.
pascal@3316 28 post_install()
pascal@3316 29 {
pascal@3316 30 chroot "$1/" depmod -a $VERSION-slitaz
pascal@3316 31 }
pascal@3316 32
pascal@3316 33 post_remove()
pascal@3316 34 {
slaxemulator@8681 35 chroot "$1/" depmod -a $VERSION-slitaz
pascal@3316 36 }
pascal@3316 37