wok annotate linux-hfsplus/receipt @ rev 2160

Add linux-hfsplus
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 07 08:43:12 2009 +0000 (2009-02-07)
parents
children 4e225981004f
rev   line source
pascal@2160 1 # SliTaz package receipt.
pascal@2160 2
pascal@2160 3 PACKAGE="linux-hfsplus"
pascal@2160 4 VERSION="2.6.25.5"
pascal@2160 5 CATEGORY="base-system"
pascal@2160 6 SHORT_DESC="The Linux kernel hfsplus module."
pascal@2160 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@2160 8 WANTED="linux"
pascal@2160 9 WEB_SITE="http://www.kernel.org/"
pascal@2160 10
pascal@2160 11 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2160 12 genpkg_rules()
pascal@2160 13 {
pascal@2160 14 local path
pascal@2160 15 path=lib/modules/$VERSION-slitaz/kernel
pascal@2160 16 mkdir -p $fs/$path
pascal@2160 17 export src
pascal@2160 18 export _pkg
pascal@2160 19 $src/list_modules.sh fs/hfsplus | while read module; do
pascal@2160 20 dir=$path/$(dirname $module)
pascal@2160 21 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@2160 22 cp -a $_pkg/$path/$module $fs/$dir
pascal@2160 23 done
pascal@2160 24 }
pascal@2160 25
pascal@2160 26 # Post install/remove commands for Tazpkg.
pascal@2160 27 post_install()
pascal@2160 28 {
pascal@2160 29 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \
pascal@2160 30 echo "${PACKAGE#*-}" >> $1/etc/filesystems
pascal@2160 31 depmod -a -b "$1/" $VERSION-slitaz
pascal@2160 32 }
pascal@2160 33
pascal@2160 34 post_remove()
pascal@2160 35 {
pascal@2160 36 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems
pascal@2160 37 depmod -a $VERSION-slitaz
pascal@2160 38 }