wok annotate linux-cramfs/receipt @ rev 13812

fox: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jan 06 10:57:03 2013 +0100 (2013-01-06)
parents d1768332cee0
children 416fab3c90c0
rev   line source
pascal@886 1 # SliTaz package receipt.
pascal@886 2
pascal@886 3 PACKAGE="linux-cramfs"
pankso@12285 4 VERSION="3.2.14"
pankso@12285 5 BASEVER="${VERSION:0:3}"
pascal@886 6 CATEGORY="base-system"
pascal@886 7 SHORT_DESC="The Linux kernel cramfs module."
pankso@3864 8 MAINTAINER="devel@slitaz.org"
pascal@2926 9 DEPENDS="linux"
pascal@886 10 WANTED="linux"
pascal@886 11 WEB_SITE="http://www.kernel.org/"
pascal@2990 12 CONFIG_FILES="/etc/filesystems"
pascal@886 13
pascal@886 14 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@886 15 genpkg_rules()
pascal@886 16 {
pascal@886 17 local path
pankso@12285 18 path=lib/modules/$BASEVER-slitaz/kernel
pascal@2990 19 mkdir -p $fs/$path $fs/etc
pascal@886 20 export src
pascal@886 21 export _pkg
slaxemulator@9700 22 $wanted_stuff/list_modules.sh fs/cramfs | while read module; do
pascal@886 23 dir=$path/$(dirname $module)
pascal@886 24 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@886 25 cp -a $_pkg/$path/$module $fs/$dir
pascal@886 26 done
pascal@2990 27 touch $fs/etc/filesystems
pascal@886 28 }
pascal@886 29
pascal@886 30 # Post install/remove commands for Tazpkg.
pascal@886 31 post_install()
pascal@886 32 {
pascal@2990 33 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \
pascal@2990 34 echo "${PACKAGE#*-}" >> $1/etc/filesystems
pankso@12285 35 chroot "$1/" depmod -a $BASEVER-slitaz
pascal@886 36 }
pascal@886 37
pascal@886 38 post_remove()
pascal@886 39 {
pascal@2990 40 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems
pankso@12285 41 chroot "$1/" depmod -a $BASEVER-slitaz
pascal@886 42 }
pascal@886 43