wok view linux-md/receipt @ rev 1675

Add libgd
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 08 13:58:58 2008 +0000 (2008-11-08)
parents 1bd86206f737
children f306d126580e
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-md"
4 VERSION="2.6.25.5"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel md modules."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 WANTED="linux"
9 WEB_SITE="http://www.kernel.org/"
10 DEPENDS="linux-crypto"
12 # Rules to gen a SliTaz package suitable for Tazpkg.
13 genpkg_rules()
14 {
15 local path
16 path=lib/modules/$VERSION-slitaz/kernel
17 mkdir -p $fs/$path
18 export src
19 export _pkg
20 $src/list_modules.sh drivers/md | while read module; do
21 case "$module" in
22 crypto/*) continue;;
23 esac
24 dir=$path/$(dirname $module)
25 [ -d $fs/$dir ] || mkdir -p $fs/$dir
26 cp -a $_pkg/$path/$module $fs/$dir
27 done
28 }
30 # Post install/remove commands for Tazpkg.
31 post_install()
32 {
33 depmod -a -b "$1/" $VERSION-slitaz
34 }
36 post_remove()
37 {
38 depmod -a $VERSION-slitaz
39 }