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

Up: linux (3.2.14) Let play with the kernel :-)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Apr 15 16:27:00 2012 +0200 (2012-04-15)
parents 02b9db771c0a
children 419afb749ac2
rev   line source
jozee@3510 1 # SliTaz package receipt.
jozee@3510 2
jozee@3510 3 PACKAGE="linux-input-touchscreen"
pankso@12285 4 VERSION="3.2.14"
pankso@12285 5 BASEVER="${VERSION:0:3}"
jozee@3510 6 CATEGORY="base-system"
jozee@3510 7 SHORT_DESC="The Linux kernel touchscreen input drivers."
jozee@3510 8 MAINTAINER="jozee@slitaz.org"
jozee@3510 9 WANTED="linux"
jozee@3510 10 WEB_SITE="http://www.kernel.org/"
jozee@3510 11
jozee@3510 12 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@3510 13 genpkg_rules()
jozee@3510 14 {
jozee@3510 15 local path
pankso@12285 16 path=lib/modules/$BASEVER-slitaz/kernel
jozee@3510 17 mkdir -p $fs/$path
jozee@3510 18 export src
jozee@3510 19 export _pkg
slaxemulator@10855 20 $wanted_stuff/list_modules.sh drivers/input/touchscreen | \
slaxemulator@10855 21 while read module; do
jozee@3510 22 dir=$path/$(dirname $module)
jozee@3510 23 [ -d $fs/$dir ] || mkdir -p $fs/$dir
jozee@3510 24 cp -a $_pkg/$path/$module $fs/$dir
jozee@3510 25 done
jozee@3510 26
pankso@12285 27 for i in $(cat $wanted_stuff/modules.list); do
pankso@12285 28 if [ -f $fs/$path/$i ]; then
pankso@12285 29 rm -f $fs/$path/$i
slaxemulator@7239 30 fi
slaxemulator@7239 31 done
jozee@3510 32 }
jozee@3510 33
jozee@3510 34 # Post install/remove commands for Tazpkg.
jozee@3510 35 post_install()
jozee@3510 36 {
pankso@12285 37 chroot "$1/" depmod -a $BASEVER-slitaz
jozee@3510 38 }
jozee@3510 39
jozee@3510 40 post_remove()
jozee@3510 41 {
pankso@12285 42 chroot "$1/" depmod -a $BASEVER-slitaz
jozee@3510 43 }
jozee@3510 44