wok annotate linux-squashfs/receipt @ rev 16521

libgd: try an other fix!
author Christophe Lincoln <pankso@slitaz.org>
date Sat Apr 26 00:27:15 2014 +0200 (2014-04-26)
parents eb689de65d7e
children 08cf996a2307
rev   line source
pascal@2990 1 # SliTaz package receipt.
pascal@2990 2
pascal@2990 3 PACKAGE="linux-squashfs"
pascal@15670 4 VERSION="3.2.53"
pascal@2990 5 CATEGORY="base-system"
pascal@2990 6 SHORT_DESC="The Linux kernel squashfs module."
pankso@3864 7 MAINTAINER="devel@slitaz.org"
pascal@14657 8 LICENSE="GPL2"
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@15855 19 path=lib/modules/$VERSION-slitaz/kernel
pascal@2990 20 mkdir -p $fs/$path $fs/etc
pankso@15855 21 export src install
slaxemulator@9700 22 $wanted_stuff/list_modules.sh fs/squashfs | while read module; do
pascal@2990 23 dir=$path/$(dirname $module)
pascal@2990 24 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@15603 25 cp -a $install/$path/$module $fs/$dir
pascal@2990 26 done
pascal@2990 27 touch $fs/etc/filesystems
pascal@2990 28 }
pascal@2990 29
pascal@2990 30 # Post install/remove commands for Tazpkg.
pascal@2990 31 post_install()
pascal@2990 32 {
pascal@2990 33 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \
pascal@2990 34 echo "${PACKAGE#*-}" >> $1/etc/filesystems
pankso@15855 35 chroot "$root/" depmod -a $VERSION-slitaz
pascal@2990 36 }
pascal@2990 37
pascal@2990 38 post_remove()
pascal@2990 39 {
pascal@2990 40 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems
pankso@15855 41 chroot "$root/" depmod -a $VERSION-slitaz
pascal@2990 42 }
pascal@2990 43