wok annotate linux-input-touchscreen/receipt @ rev 7239

Fixed wanted linux receipts to remove modules that are in modules-VERSION.list if they exist in other packages.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Nov 13 03:27:43 2010 +0000 (2010-11-13)
parents 5355ffc461cf
children 03d4663c81fa
rev   line source
jozee@3510 1 # SliTaz package receipt.
jozee@3510 2
jozee@3510 3 PACKAGE="linux-input-touchscreen"
slaxemulator@7131 4 VERSION="2.6.36"
jozee@3510 5 CATEGORY="base-system"
jozee@3510 6 SHORT_DESC="The Linux kernel touchscreen input drivers."
jozee@3510 7 MAINTAINER="jozee@slitaz.org"
jozee@3510 8 WANTED="linux"
jozee@3510 9 WEB_SITE="http://www.kernel.org/"
jozee@3510 10
jozee@3510 11 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@3510 12 genpkg_rules()
jozee@3510 13 {
jozee@3510 14 local path
jozee@3510 15 path=lib/modules/$VERSION-slitaz/kernel
jozee@3510 16 mkdir -p $fs/$path
jozee@3510 17 export src
jozee@3510 18 export _pkg
pascal@3920 19 $src/slitaz/list_modules.sh drivers/input/touchscreen \
jozee@3510 20 lib/ts_bm.ko.gz lib/ts_fsm.ko.gz lib/ts_kmp.ko.gz | while read module; do
jozee@3510 21 dir=$path/$(dirname $module)
jozee@3510 22 [ -d $fs/$dir ] || mkdir -p $fs/$dir
jozee@3510 23 cp -a $_pkg/$path/$module $fs/$dir
jozee@3510 24 done
jozee@3510 25
slaxemulator@7239 26 for i in $(cat $WOK/$WANTED/stuff/modules-$VERSION.list); do
slaxemulator@7239 27 if [ $fs/lib/modules/$VERSION-slitaz/kernel/$i ]; then
slaxemulator@7239 28 rm -f $fs/lib/modules/$VERSION-slitaz/kernel/$i
slaxemulator@7239 29 fi
slaxemulator@7239 30 done
jozee@3510 31 }
jozee@3510 32
jozee@3510 33 # Post install/remove commands for Tazpkg.
jozee@3510 34 post_install()
jozee@3510 35 {
jozee@3510 36 chroot "$1/" depmod -a $VERSION-slitaz
jozee@3510 37 }
jozee@3510 38
jozee@3510 39 post_remove()
jozee@3510 40 {
jozee@3510 41 depmod -a $VERSION-slitaz
jozee@3510 42 }
jozee@3510 43