wok view linux-libre-md/receipt @ rev 15603

Use install instead of _pkg
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Dec 06 10:39:07 2013 +0000 (2013-12-06)
parents ad59999b3fce
children 9e8d7fd12ee2
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-libre-md"
4 VERSION="2.6.37-gnu"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux Libre kernel md modules."
7 MAINTAINER="gokhlayeh@slitaz.org"
8 LICENSE="GPL2"
9 PROVIDE="linux-md"
10 DEPENDS="linux-libre"
11 WANTED="linux-libre"
12 WEB_SITE="http://www.fsfla.org/svnwiki/selibre/linux-libre/"
13 DEPENDS="linux-libre-crypto"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 local path
19 path=lib/modules/$VERSION-slitaz/kernel
20 mkdir -p $fs/$path
21 export src
22 export _pkg
23 $wanted_stuff/list_modules.sh drivers/md | while read module; do
24 case "$module" in
25 crypto/*) continue;;
26 esac
27 dir=$path/$(dirname $module)
28 [ -d $fs/$dir ] || mkdir -p $fs/$dir
29 cp -a $install/$path/$module $fs/$dir
30 done
32 for i in $(cat $wanted_stuff/modules-$VERSION.list); do
33 if [ $fs/lib/modules/$VERSION-slitaz/kernel/$i ]; then
34 rm -f $fs/lib/modules/$VERSION-slitaz/kernel/$i
35 fi
36 done
37 }
39 # Post install/remove commands for Tazpkg.
40 post_install()
41 {
42 chroot "$1/" depmod -a $VERSION-slitaz
43 }
45 post_remove()
46 {
47 chroot "$1/" depmod -a $VERSION-slitaz
48 }