wok view linux-hfsplus/receipt @ rev 2562

declare /etc/filesystems
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 29 11:34:34 2009 +0000 (2009-03-29)
parents 0313887c948c
children f306d126580e
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-hfsplus"
4 VERSION="2.6.25.5"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel hfsplus module."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 WANTED="linux"
9 WEB_SITE="http://www.kernel.org/"
10 CONFIG_FILES="/etc/filesystems"
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 $fs/etc
18 export src
19 export _pkg
20 $src/list_modules.sh fs/hfsplus | while read module; do
21 dir=$path/$(dirname $module)
22 [ -d $fs/$dir ] || mkdir -p $fs/$dir
23 cp -a $_pkg/$path/$module $fs/$dir
24 done
25 touch $fs/etc/filesystems
26 }
28 # Post install/remove commands for Tazpkg.
29 post_install()
30 {
31 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \
32 echo "${PACKAGE#*-}" >> $1/etc/filesystems
33 depmod -a -b "$1/" $VERSION-slitaz
34 }
36 post_remove()
37 {
38 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems
39 depmod -a $VERSION-slitaz
40 }