wok-current annotate linux-input-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-input-misc" |
slaxemulator@8085 | 4 VERSION="2.6.37" |
pascal@3316 | 5 CATEGORY="base-system" |
pascal@3316 | 6 SHORT_DESC="The Linux kernel misc. input drivers, including the ATI RemoteWonders." |
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/input/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 |
slaxemulator@9700 | 25 for i in $(cat $wanted_stuff/modules-$VERSION.list); do |
slaxemulator@7239 | 26 if [ $fs/lib/modules/$VERSION-slitaz/kernel/$i ]; then |
slaxemulator@7239 | 27 rm -f $fs/lib/modules/$VERSION-slitaz/kernel/$i |
slaxemulator@7239 | 28 fi |
slaxemulator@7239 | 29 done |
pascal@3316 | 30 } |
pascal@3316 | 31 |
pascal@3316 | 32 # Post install/remove commands for Tazpkg. |
pascal@3316 | 33 post_install() |
pascal@3316 | 34 { |
pascal@3316 | 35 chroot "$1/" depmod -a $VERSION-slitaz |
pascal@3316 | 36 } |
pascal@3316 | 37 |
pascal@3316 | 38 post_remove() |
pascal@3316 | 39 { |
slaxemulator@8681 | 40 chroot "$1/" depmod -a $VERSION-slitaz |
pascal@3316 | 41 } |
pascal@3316 | 42 |