wok annotate linux-reiserfs/receipt @ rev 2264

Sheerdns: extend wildcard scope
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 16 13:50:36 2009 +0000 (2009-02-16)
parents 04b68c6ffdfa
children 4e225981004f
rev   line source
pascal@521 1 # SliTaz package receipt.
pascal@521 2
pascal@521 3 PACKAGE="linux-reiserfs"
pascal@886 4 VERSION="2.6.25.5"
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@521 8 WANTED="linux"
pascal@521 9 WEB_SITE="http://www.kernel.org/"
pascal@521 10
pascal@521 11 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@521 12 genpkg_rules()
pascal@521 13 {
pascal@521 14 local path
pascal@521 15 path=lib/modules/$VERSION-slitaz/kernel
pascal@521 16 mkdir -p $fs/$path
pascal@886 17 export src
pascal@886 18 export _pkg
pascal@886 19 $src/list_modules.sh fs/reiserfs | while read module; do
pascal@521 20 dir=$path/$(dirname $module)
pascal@521 21 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@521 22 cp -a $_pkg/$path/$module $fs/$dir
pascal@886 23 done
pascal@521 24 }
pascal@521 25
pascal@521 26 # Post install/remove commands for Tazpkg.
pascal@521 27 post_install()
pascal@521 28 {
pascal@2127 29 grep -qs ^reiserfs$ $1/etc/filesystems || \
pascal@2127 30 echo "reiserfs" >> $1/etc/filesystems
pascal@886 31 depmod -a -b "$1/" $VERSION-slitaz
pascal@521 32 }
pascal@521 33
pascal@521 34 post_remove()
pascal@521 35 {
pascal@2127 36 sed -i '/^reiserfs$/d' $1/etc/filesystems
pascal@886 37 depmod -a $VERSION-slitaz
pascal@521 38 }