wok view linux-scsi/receipt @ rev 3864

Up: linux (2.6.30.4)
author Christophe Lincoln <pankso@slitaz.org>
date Fri Aug 07 23:18:34 2009 +0200 (2009-08-07)
parents 9059daaaa23d
children bea1fdc6a26e
line source
1 # SliTaz package receipt.
3 PACKED_SIZE="8.0k"
4 UNPACKED_SIZE="4.0k"
5 PACKAGE="linux-scsi"
6 VERSION="2.6.30.4"
7 CATEGORY="base-system"
8 SHORT_DESC="The Linux kernel scsi modules."
9 MAINTAINER="devel@slitaz.org"
10 DEPENDS="linux"
11 WANTED="linux"
12 WEB_SITE="http://www.kernel.org/"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 local path
18 path=lib/modules/$VERSION-slitaz/kernel
19 mkdir -p $fs/$path
20 export src
21 export _pkg
22 $src/list_modules.sh drivers/scsi | while read module; do
23 dir=$path/$(dirname $module)
24 [ -d $fs/$dir ] || mkdir -p $fs/$dir
25 cp -a $_pkg/$path/$module $fs/$dir
26 done
27 }
29 # Post install/remove commands for Tazpkg.
30 post_install()
31 {
32 chroot "$1/" depmod -a $VERSION-slitaz
33 }
35 post_remove()
36 {
37 depmod -a $VERSION-slitaz
38 }