wok annotate linux-btrfs/receipt @ rev 6124

tazbb : typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Sep 05 15:13:29 2010 +0200 (2010-09-05)
parents 33dfd49cdf84
children 5355ffc461cf
rev   line source
pascal@3002 1 # SliTaz package receipt.
pascal@3002 2
pascal@3002 3 PACKAGE="linux-btrfs"
pankso@5640 4 VERSION="2.6.34"
pascal@3002 5 CATEGORY="base-system"
pascal@3053 6 SHORT_DESC="The Linux kernel btrfs module."
pankso@3864 7 MAINTAINER="devel@slitaz.org"
pascal@3002 8 DEPENDS="linux"
pascal@3002 9 WANTED="linux"
pascal@3002 10 WEB_SITE="http://www.kernel.org/"
pascal@3002 11 CONFIG_FILES="/etc/filesystems"
pascal@3002 12
pascal@3002 13 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@3002 14 genpkg_rules()
pascal@3002 15 {
pascal@3002 16 local path
pascal@3002 17 path=lib/modules/$VERSION-slitaz/kernel
pascal@3002 18 mkdir -p $fs/$path $fs/etc
pascal@3002 19 export src
pascal@3002 20 export _pkg
pascal@3920 21 $src/slitaz/list_modules.sh fs/${PACKAGE#*-} | while read module; do
pascal@3002 22 dir=$path/$(dirname $module)
pascal@3002 23 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@3002 24 cp -a $_pkg/$path/$module $fs/$dir
pascal@3002 25 done
pascal@3002 26 touch $fs/etc/filesystems
pascal@3002 27 }
pascal@3002 28
pascal@3002 29 # Post install/remove commands for Tazpkg.
pascal@3002 30 post_install()
pascal@3002 31 {
pascal@3002 32 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \
pascal@3002 33 echo "${PACKAGE#*-}" >> $1/etc/filesystems
pascal@3002 34 chroot "$1/" depmod -a $VERSION-slitaz
pascal@3002 35 }
pascal@3002 36
pascal@3002 37 post_remove()
pascal@3002 38 {
pascal@3002 39 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems
pascal@3002 40 depmod -a $VERSION-slitaz
pascal@3002 41 }
pascal@3002 42