wok annotate linux-squashfs/receipt @ rev 13953

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