wok view linux-md/receipt @ rev 18296

Up linux (3.2.71)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 17 11:03:13 2015 +0200 (2015-08-17)
parents db5b03f42dd9
children ffc20f9bd49f
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-md"
4 VERSION="3.2.71"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel md modules."
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 DEPENDS="linux"
10 WANTED="linux"
11 WEB_SITE="http://www.kernel.org/"
12 DEPENDS="linux-crypto"
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 install
21 $wanted_stuff/list_modules.sh drivers/md | while read module; do
22 case "$module" in
23 crypto/*) continue;;
24 esac
25 dir=$path/$(dirname $module)
26 [ -d $fs/$dir ] || mkdir -p $fs/$dir
27 cp -a $install/$path/$module $fs/$dir
28 done
30 for i in $(cat $wanted_stuff/modules.list); do
31 if [ -f $fs/$path/$i ]; then
32 rm -f $fs/$path/$i
33 fi
34 done
35 }
37 # Post install/remove commands for Tazpkg.
38 post_install()
39 {
40 chroot "$root/" depmod -a $VERSION-slitaz
41 }
43 post_remove()
44 {
45 chroot "$root/" depmod -a $VERSION-slitaz
46 }