wok view linux-crypto/receipt @ rev 12864

Up: htop to 1.0.1.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu May 24 21:12:24 2012 +0000 (2012-05-24)
parents d1768332cee0
children 416fab3c90c0
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-crypto"
4 VERSION="3.2.14"
5 BASEVER="${VERSION:0:3}"
6 CATEGORY="base-system"
7 SHORT_DESC="The Linux kernel crypto modules."
8 MAINTAINER="devel@slitaz.org"
9 DEPENDS="linux"
10 WANTED="linux"
11 WEB_SITE="http://www.kernel.org/"
13 # Rules to gen a SliTaz package suitable for Tazpkg.
14 genpkg_rules()
15 {
16 local path
17 path=lib/modules/$BASEVER-slitaz/kernel
18 mkdir -p $fs/$path
19 export src
20 export _pkg
21 $wanted_stuff/list_modules.sh arch/x86/crypto crypto drivers/crypto | \
22 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
28 for i in $(cat $wanted_stuff/modules.list); do
29 if [ -f $fs/$path/$i ]; then
30 rm -f $fs/$path/$i
31 fi
32 done
33 }
35 # Post install/remove commands for Tazpkg.
36 post_install()
37 {
38 chroot "$1/" depmod -a $BASEVER-slitaz
39 }
41 post_remove()
42 {
43 chroot "$1/" depmod -a $BASEVER-slitaz
44 }