wok annotate linux-autofs/receipt @ rev 9120

firefox-dev: fix genpkg_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 05 13:36:09 2011 +0100 (2011-03-05)
parents 03d4663c81fa
children d1768332cee0
rev   line source
pascal@7286 1 # SliTaz package receipt.
pascal@7286 2
pascal@7286 3 PACKAGE="linux-autofs"
slaxemulator@8085 4 VERSION="2.6.37"
pascal@7286 5 CATEGORY="base-system"
pascal@7286 6 SHORT_DESC="The Linux kernel automounter module."
pascal@7286 7 MAINTAINER="devel@slitaz.org"
pascal@7286 8 DEPENDS="linux"
pascal@7286 9 WANTED="linux"
pascal@7286 10 WEB_SITE="http://www.kernel.org/"
pascal@7286 11 CONFIG_FILES="/etc/filesystems"
pascal@7286 12
pascal@7286 13 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@7286 14 genpkg_rules()
pascal@7286 15 {
pascal@7286 16 local path
pascal@7286 17 path=lib/modules/$VERSION-slitaz/kernel
pascal@7286 18 mkdir -p $fs/$path $fs/etc
pascal@7286 19 export src
pascal@7286 20 export _pkg
slaxemulator@8681 21 $WOK/$WANTED/stuff/list_modules.sh fs/autofs4 | while read module; do
pascal@7286 22 dir=$path/$(dirname $module)
pascal@7286 23 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@7286 24 cp -a $_pkg/$path/$module $fs/$dir
pascal@7286 25 done
pascal@7286 26 touch $fs/etc/filesystems
pascal@7286 27 }
pascal@7286 28
pascal@7286 29 # Post install/remove commands for Tazpkg.
pascal@7286 30 post_install()
pascal@7286 31 {
pascal@7286 32 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \
pascal@7286 33 echo "${PACKAGE#*-}" >> $1/etc/filesystems
pascal@7286 34 chroot "$1/" depmod -a $VERSION-slitaz
pascal@7286 35 }
pascal@7286 36
pascal@7286 37 post_remove()
pascal@7286 38 {
pascal@7286 39 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems
slaxemulator@8681 40 chroot "$1/" depmod -a $VERSION-slitaz
pascal@7286 41 }
pascal@7286 42