wok annotate linux-coda/receipt @ rev 14817

Up: libexo* (0.8.0)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Jul 17 13:43:00 2013 +0200 (2013-07-17)
parents 416fab3c90c0
children 051931e905b0
rev   line source
pascal@961 1 # SliTaz package receipt.
pascal@961 2
pascal@961 3 PACKAGE="linux-coda"
pascal@14175 4 VERSION="3.2.40"
pankso@12285 5 BASEVER="${VERSION:0:3}"
pascal@961 6 CATEGORY="base-system"
pascal@961 7 SHORT_DESC="The Linux kernel coda module."
pankso@3864 8 MAINTAINER="devel@slitaz.org"
pascal@14657 9 LICENSE="GPL2"
pascal@2926 10 DEPENDS="linux"
pascal@961 11 WANTED="linux"
pascal@961 12 WEB_SITE="http://www.kernel.org/"
pascal@2990 13 CONFIG_FILES="/etc/filesystems"
pascal@961 14
pascal@961 15 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@961 16 genpkg_rules()
pascal@961 17 {
pascal@961 18 local path
pankso@12285 19 path=lib/modules/$BASEVER-slitaz/kernel
pascal@2990 20 mkdir -p $fs/$path $fs/etc
pascal@961 21 export src
pascal@961 22 export _pkg
slaxemulator@9700 23 $wanted_stuff/list_modules.sh fs/coda | while read module; do
pascal@961 24 dir=$path/$(dirname $module)
pascal@961 25 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@961 26 cp -a $_pkg/$path/$module $fs/$dir
pascal@961 27 done
pascal@2990 28 touch $fs/etc/filesystems
pascal@961 29 }
pascal@961 30
pascal@961 31 # Post install/remove commands for Tazpkg.
pascal@961 32 post_install()
pascal@961 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@961 37 }
pascal@961 38
pascal@961 39 post_remove()
pascal@961 40 {
pascal@2990 41 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems
pankso@12285 42 chroot "$1/" depmod -a $BASEVER-slitaz
pascal@961 43 }
pascal@961 44