wok annotate linux-input-misc/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 d1768332cee0
children 419afb749ac2
rev   line source
pascal@3316 1 # SliTaz package receipt.
pascal@3316 2
pascal@3316 3 PACKAGE="linux-input-misc"
pankso@12285 4 VERSION="3.2.14"
pankso@12285 5 BASEVER="${VERSION:0:3}"
pascal@3316 6 CATEGORY="base-system"
pascal@3316 7 SHORT_DESC="The Linux kernel misc. input drivers, including the ATI RemoteWonders."
pascal@3316 8 MAINTAINER="rcx@zoominternet.net"
pascal@3316 9 WANTED="linux"
pascal@3316 10 WEB_SITE="http://www.kernel.org/"
pascal@3316 11
pascal@3316 12 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@3316 13 genpkg_rules()
pascal@3316 14 {
pascal@3316 15 local path
pankso@12285 16 path=lib/modules/$BASEVER-slitaz/kernel
pascal@3316 17 mkdir -p $fs/$path
pascal@3316 18 export src
pascal@3316 19 export _pkg
slaxemulator@9700 20 $wanted_stuff/list_modules.sh drivers/input/misc | while read module; do
pascal@3316 21 dir=$path/$(dirname $module)
pascal@3316 22 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@3316 23 cp -a $_pkg/$path/$module $fs/$dir
pascal@3316 24 done
pascal@3316 25
pankso@12285 26 for i in $(cat $wanted_stuff/modules.list); do
pankso@12285 27 if [ -f $fs/$path/$i ]; then
pankso@12285 28 rm -f $fs/$path/$i
slaxemulator@7239 29 fi
slaxemulator@7239 30 done
pascal@3316 31 }
pascal@3316 32
pascal@3316 33 # Post install/remove commands for Tazpkg.
pascal@3316 34 post_install()
pascal@3316 35 {
pankso@12285 36 chroot "$1/" depmod -a $BASEVER-slitaz
pascal@3316 37 }
pascal@3316 38
pascal@3316 39 post_remove()
pascal@3316 40 {
pankso@12285 41 chroot "$1/" depmod -a $BASEVER-slitaz
pascal@3316 42 }
pascal@3316 43