wok annotate linux-cramfs/receipt @ rev 3053

Add linux-ext4 linux-hfs linux-minix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 13 16:03:39 2009 +0200 (2009-05-13)
parents f306d126580e
children 7df76f20d2c3
rev   line source
pascal@886 1 # SliTaz package receipt.
pascal@886 2
pascal@886 3 PACKAGE="linux-cramfs"
pascal@2990 4 VERSION="2.6.29.3"
pascal@886 5 CATEGORY="base-system"
pascal@886 6 SHORT_DESC="The Linux kernel cramfs module."
pascal@886 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@2926 8 DEPENDS="linux"
pascal@886 9 WANTED="linux"
pascal@886 10 WEB_SITE="http://www.kernel.org/"
pascal@2990 11 CONFIG_FILES="/etc/filesystems"
pascal@886 12
pascal@886 13 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@886 14 genpkg_rules()
pascal@886 15 {
pascal@886 16 local path
pascal@886 17 path=lib/modules/$VERSION-slitaz/kernel
pascal@2990 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/cramfs | while read module; do
pascal@886 22 dir=$path/$(dirname $module)
pascal@886 23 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@886 24 cp -a $_pkg/$path/$module $fs/$dir
pascal@886 25 done
pascal@2990 26 touch $fs/etc/filesystems
pascal@886 27 }
pascal@886 28
pascal@886 29 # Post install/remove commands for Tazpkg.
pascal@886 30 post_install()
pascal@886 31 {
pascal@2990 32 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \
pascal@2990 33 echo "${PACKAGE#*-}" >> $1/etc/filesystems
pascal@2990 34 chroot "$1/" depmod -a $VERSION-slitaz
pascal@886 35 }
pascal@886 36
pascal@886 37 post_remove()
pascal@886 38 {
pascal@2990 39 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems
pascal@886 40 depmod -a $VERSION-slitaz
pascal@886 41 }
pascal@886 42