wok annotate linux-reiserfs/receipt @ rev 3340

Add: childsplay (0.90.2)
author Claudinei Pereira <claudinei@slitaz.org>
date Thu Jun 11 02:15:26 2009 +0000 (2009-06-11)
parents f306d126580e
children 7df76f20d2c3
rev   line source
pascal@521 1 # SliTaz package receipt.
pascal@521 2
pascal@521 3 PACKAGE="linux-reiserfs"
pascal@2990 4 VERSION="2.6.29.3"
pascal@521 5 CATEGORY="base-system"
pascal@521 6 SHORT_DESC="The Linux kernel reiserfs module."
pascal@521 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@2926 8 DEPENDS="linux"
pascal@521 9 WANTED="linux"
pascal@521 10 WEB_SITE="http://www.kernel.org/"
pascal@2562 11 CONFIG_FILES="/etc/filesystems"
pascal@521 12
pascal@521 13 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@521 14 genpkg_rules()
pascal@521 15 {
pascal@521 16 local path
pascal@521 17 path=lib/modules/$VERSION-slitaz/kernel
pascal@2562 18 mkdir -p $fs/$path $fs/etc
pascal@886 19 export src
pascal@886 20 export _pkg
pascal@886 21 $src/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@521 24 cp -a $_pkg/$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@2562 32 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \
pascal@2562 33 echo "${PACKAGE#*-}" >> $1/etc/filesystems
pascal@2990 34 chroot "$1/" depmod -a $VERSION-slitaz
pascal@521 35 }
pascal@521 36
pascal@521 37 post_remove()
pascal@521 38 {
pascal@2562 39 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems
pascal@886 40 depmod -a $VERSION-slitaz
pascal@521 41 }
pascal@2990 42