wok annotate linux-configfs/receipt @ rev 12161

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