wok-4.x annotate linux-mmc/receipt @ rev 3579
emesene: update DEPENDS, remove host.patch(not needed). gajim: update DEPENDS
author | Liu Peng <rocky@slitaz.org> |
---|---|
date | Fri Jun 26 13:49:19 2009 +0000 (2009-06-26) |
parents | f306d126580e |
children | 7df76f20d2c3 |
rev | line source |
---|---|
pascal@2162 | 1 # SliTaz package receipt. |
pascal@2162 | 2 |
pascal@2162 | 3 PACKAGE="linux-mmc" |
pascal@2990 | 4 VERSION="2.6.29.3" |
pascal@2162 | 5 CATEGORY="base-system" |
pascal@2162 | 6 SHORT_DESC="The Linux kernel mmc modules (card reader)." |
pascal@2162 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@2926 | 8 DEPENDS="linux" |
pascal@2162 | 9 WANTED="linux" |
pascal@2162 | 10 WEB_SITE="http://www.kernel.org/" |
pascal@2162 | 11 |
pascal@2162 | 12 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2162 | 13 genpkg_rules() |
pascal@2162 | 14 { |
pascal@2162 | 15 local path |
pascal@2162 | 16 path=lib/modules/$VERSION-slitaz/kernel |
pascal@2162 | 17 mkdir -p $fs/$path |
pascal@2162 | 18 export src |
pascal@2162 | 19 export _pkg |
pascal@2990 | 20 $src/list_modules.sh drivers/mmc drivers/misc/tifm_7xx1.ko.gz | \ |
pascal@2990 | 21 while read module; do |
pascal@2162 | 22 dir=$path/$(dirname $module) |
pascal@2162 | 23 [ -d $fs/$dir ] || mkdir -p $fs/$dir |
pascal@2162 | 24 cp -a $_pkg/$path/$module $fs/$dir |
pascal@2162 | 25 done |
pascal@2162 | 26 } |
pascal@2162 | 27 |
pascal@2162 | 28 # Post install/remove commands for Tazpkg. |
pascal@2162 | 29 post_install() |
pascal@2162 | 30 { |
pascal@2990 | 31 chroot "$1/" depmod -a $VERSION-slitaz |
pascal@2162 | 32 } |
pascal@2162 | 33 |
pascal@2162 | 34 post_remove() |
pascal@2162 | 35 { |
pascal@2162 | 36 depmod -a $VERSION-slitaz |
pascal@2162 | 37 } |
pascal@2162 | 38 |