wok annotate linux-cramfs/receipt @ rev 17543

Up busybox (1.23.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 27 16:55:03 2015 +0100 (2015-01-27)
parents eb689de65d7e
children 08cf996a2307
rev   line source
pascal@886 1 # SliTaz package receipt.
pascal@886 2
pascal@886 3 PACKAGE="linux-cramfs"
pascal@15670 4 VERSION="3.2.53"
pascal@886 5 CATEGORY="base-system"
pascal@886 6 SHORT_DESC="The Linux kernel cramfs module."
pankso@3864 7 MAINTAINER="devel@slitaz.org"
pascal@14657 8 LICENSE="GPL2"
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@15855 18 path=lib/modules/$VERSION-slitaz/kernel
pascal@2990 19 mkdir -p $fs/$path $fs/etc
pankso@15855 20 export src install
slaxemulator@9700 21 $wanted_stuff/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@15603 24 cp -a $install/$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
pankso@15855 34 chroot "$root/" 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
pankso@15855 40 chroot "$root/" depmod -a $VERSION-slitaz
pascal@886 41 }
pascal@886 42