wok annotate linux-hfsplus/receipt @ rev 12494

Up: dbus-python (1.0.0)
author Christophe Lincoln <pankso@slitaz.org>
date Tue Apr 24 15:23:41 2012 +0200 (2012-04-24)
parents d1768332cee0
children 416fab3c90c0
rev   line source
pascal@2160 1 # SliTaz package receipt.
pascal@2160 2
pascal@2160 3 PACKAGE="linux-hfsplus"
pankso@12285 4 VERSION="3.2.14"
pankso@12285 5 BASEVER="${VERSION:0:3}"
pascal@2160 6 CATEGORY="base-system"
pascal@2160 7 SHORT_DESC="The Linux kernel hfsplus module."
pankso@3864 8 MAINTAINER="devel@slitaz.org"
pascal@2926 9 DEPENDS="linux"
pascal@2160 10 WANTED="linux"
pascal@2160 11 WEB_SITE="http://www.kernel.org/"
pascal@2562 12 CONFIG_FILES="/etc/filesystems"
pascal@2160 13
pascal@2160 14 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2160 15 genpkg_rules()
pascal@2160 16 {
pascal@2160 17 local path
pankso@12285 18 path=lib/modules/$BASEVER-slitaz/kernel
pascal@2562 19 mkdir -p $fs/$path $fs/etc
pascal@2160 20 export src
pascal@2160 21 export _pkg
slaxemulator@9700 22 $wanted_stuff/list_modules.sh fs/hfsplus | while read module; do
pascal@2160 23 dir=$path/$(dirname $module)
pascal@2160 24 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@2160 25 cp -a $_pkg/$path/$module $fs/$dir
pascal@2160 26 done
pascal@2562 27 touch $fs/etc/filesystems
pascal@2160 28 }
pascal@2160 29
pascal@2160 30 # Post install/remove commands for Tazpkg.
pascal@2160 31 post_install()
pascal@2160 32 {
pascal@2160 33 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \
pascal@2160 34 echo "${PACKAGE#*-}" >> $1/etc/filesystems
pankso@12285 35 chroot "$1/" depmod -a $BASEVER-slitaz
pascal@2160 36 }
pascal@2160 37
pascal@2160 38 post_remove()
pascal@2160 39 {
pascal@2160 40 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems
pankso@12285 41 chroot "$1/" depmod -a $BASEVER-slitaz
pascal@2160 42 }