wok-6.x annotate linux-ieee1394/receipt @ rev 594
get-b43-firmware: typo
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Apr 17 14:30:53 2008 +0000 (2008-04-17) |
parents | cd99ec381938 |
children | 04b68c6ffdfa |
rev | line source |
---|---|
pascal@521 | 1 # SliTaz package receipt. |
pascal@521 | 2 |
pascal@521 | 3 PACKAGE="linux-ieee1394" |
pascal@521 | 4 VERSION="2.6.24.2" |
pascal@521 | 5 CATEGORY="base-system" |
pascal@521 | 6 SHORT_DESC="The Linux kernel ieee1394 modules." |
pascal@521 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@521 | 8 WANTED="linux" |
pascal@521 | 9 WEB_SITE="http://www.kernel.org/" |
pascal@521 | 10 |
pascal@521 | 11 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@521 | 12 genpkg_rules() |
pascal@521 | 13 { |
pascal@521 | 14 local path |
pascal@521 | 15 path=lib/modules/$VERSION-slitaz/kernel |
pascal@521 | 16 mkdir -p $fs/$path |
pascal@521 | 17 while read module; do |
pascal@521 | 18 dir=$path/$(dirname $module) |
pascal@521 | 19 [ -d $fs/$dir ] || mkdir -p $fs/$dir |
pascal@521 | 20 cp -a $_pkg/$path/$module $fs/$dir |
pascal@521 | 21 done < stuff/modules-$VERSION.list |
pascal@521 | 22 } |
pascal@521 | 23 |
pascal@521 | 24 # Post install/remove commands for Tazpkg. |
pascal@521 | 25 post_install() |
pascal@521 | 26 { |
pascal@532 | 27 depmod -a -b /$1 |
pascal@521 | 28 } |
pascal@521 | 29 |
pascal@521 | 30 post_remove() |
pascal@521 | 31 { |
pascal@521 | 32 depmod -a |
pascal@521 | 33 } |
pascal@521 | 34 |