wok annotate linux-reiserfs/receipt @ rev 18730

Quote root dir in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Dec 20 15:13:45 2015 +0100 (2015-12-20)
parents 08cf996a2307
children ffc20f9bd49f
rev   line source
pascal@521 1 # SliTaz package receipt.
pascal@521 2
pascal@521 3 PACKAGE="linux-reiserfs"
pascal@18296 4 VERSION="3.2.71"
pascal@521 5 CATEGORY="base-system"
pascal@521 6 SHORT_DESC="The Linux kernel reiserfs module."
pankso@3864 7 MAINTAINER="devel@slitaz.org"
pascal@14657 8 LICENSE="GPL2"
pascal@2926 9 DEPENDS="linux"
pascal@521 10 WANTED="linux"
pascal@521 11 WEB_SITE="http://www.kernel.org/"
pascal@2562 12 CONFIG_FILES="/etc/filesystems"
pascal@521 13
pascal@521 14 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@521 15 genpkg_rules()
pascal@521 16 {
pascal@521 17 local path
pankso@15855 18 path=lib/modules/$VERSION-slitaz/kernel
pascal@2562 19 mkdir -p $fs/$path $fs/etc
pankso@15855 20 export src install
slaxemulator@9700 21 $wanted_stuff/list_modules.sh fs/reiserfs | while read module; do
pascal@521 22 dir=$path/$(dirname $module)
pascal@521 23 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@15603 24 cp -a $install/$path/$module $fs/$dir
pascal@886 25 done
pascal@2562 26 touch $fs/etc/filesystems
pascal@521 27 }
pascal@521 28
pascal@521 29 # Post install/remove commands for Tazpkg.
pascal@521 30 post_install()
pascal@521 31 {
pascal@18730 32 grep -qs ^${PACKAGE#*-}$ "$1/etc/filesystems" || \
pascal@18730 33 echo "${PACKAGE#*-}" >> "$1/etc/filesystems"
pascal@18730 34 chroot "$1/" depmod -a $VERSION-slitaz
pascal@521 35 }
pascal@521 36
pascal@521 37 post_remove()
pascal@521 38 {
pascal@18730 39 sed -i "/^${PACKAGE#*-}\$/d" "$1/etc/filesystems"
pascal@18730 40 chroot "$1/" depmod -a $VERSION-slitaz
pascal@521 41 }