wok view linux-acpi/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents d1768332cee0
children 416fab3c90c0
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-acpi"
4 VERSION="3.2.14"
5 BASEVER="${VERSION:0:3}"
6 CATEGORY="base-system"
7 SHORT_DESC="The Linux kernel acpi modules."
8 DEPENDS="linux"
9 MAINTAINER="devel@slitaz.org"
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 drivers/acpi drivers/platform/x86 | \
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 }