wok annotate linux-squashfs/receipt @ rev 15135

python-werkzeug: typos
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 15 10:36:33 2013 +0000 (2013-08-15)
parents 416fab3c90c0
children 051931e905b0
rev   line source
pascal@2990 1 # SliTaz package receipt.
pascal@2990 2
pascal@2990 3 PACKAGE="linux-squashfs"
pascal@14175 4 VERSION="3.2.40"
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@14657 9 LICENSE="GPL2"
pascal@2990 10 DEPENDS="linux"
pascal@2990 11 WANTED="linux"
pascal@2990 12 WEB_SITE="http://www.kernel.org/"
pascal@2990 13 PROVIDE="squashfs-module"
pascal@2990 14 CONFIG_FILES="/etc/filesystems"
pascal@2990 15
pascal@2990 16 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2990 17 genpkg_rules()
pascal@2990 18 {
pascal@2990 19 local path
pankso@12285 20 path=lib/modules/$BASEVER-slitaz/kernel
pascal@2990 21 mkdir -p $fs/$path $fs/etc
pascal@2990 22 export src
pascal@2990 23 export _pkg
slaxemulator@9700 24 $wanted_stuff/list_modules.sh fs/squashfs | while read module; do
pascal@2990 25 dir=$path/$(dirname $module)
pascal@2990 26 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@2990 27 cp -a $_pkg/$path/$module $fs/$dir
pascal@2990 28 done
pascal@2990 29 touch $fs/etc/filesystems
pascal@2990 30 }
pascal@2990 31
pascal@2990 32 # Post install/remove commands for Tazpkg.
pascal@2990 33 post_install()
pascal@2990 34 {
pascal@2990 35 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \
pascal@2990 36 echo "${PACKAGE#*-}" >> $1/etc/filesystems
pankso@12285 37 chroot "$1/" depmod -a $BASEVER-slitaz
pascal@2990 38 }
pascal@2990 39
pascal@2990 40 post_remove()
pascal@2990 41 {
pascal@2990 42 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems
pankso@12285 43 chroot "$1/" depmod -a $BASEVER-slitaz
pascal@2990 44 }
pascal@2990 45