wok annotate linux-btrfs/receipt @ rev 3002

Add btrfs-progs linux-btrfs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 11 22:07:59 2009 +0200 (2009-05-11)
parents
children 0e7625344392
rev   line source
pascal@3002 1 # SliTaz package receipt.
pascal@3002 2
pascal@3002 3 PACKAGE="linux-btrfs"
pascal@3002 4 VERSION="2.6.29.3"
pascal@3002 5 CATEGORY="base-system"
pascal@3002 6 SHORT_DESC="The Linux kernel reiserfs module."
pascal@3002 7 MAINTAINER="pascal.bellard@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@3002 21 $src/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