wok annotate linux-cifs/receipt @ rev 7263

Up: foomatic-db to 4.0-20101114.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Nov 14 17:12:53 2010 +0000 (2010-11-14)
parents 63937e3b2979
children 03d4663c81fa
rev   line source
pascal@961 1 # SliTaz package receipt.
pascal@961 2
pascal@961 3 PACKAGE="linux-cifs"
slaxemulator@7131 4 VERSION="2.6.36"
pascal@961 5 CATEGORY="base-system"
pascal@961 6 SHORT_DESC="The Linux kernel cifs module."
pankso@3864 7 MAINTAINER="devel@slitaz.org"
pascal@2926 8 DEPENDS="linux"
pascal@961 9 WANTED="linux"
pascal@961 10 WEB_SITE="http://www.kernel.org/"
pascal@2562 11 CONFIG_FILES="/etc/filesystems"
pascal@961 12
pascal@961 13 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@961 14 genpkg_rules()
pascal@961 15 {
pascal@961 16 local path
pascal@961 17 path=lib/modules/$VERSION-slitaz/kernel
pascal@2562 18 mkdir -p $fs/$path $fs/etc
pascal@961 19 export src
pascal@961 20 export _pkg
pascal@3920 21 $src/slitaz/list_modules.sh fs/cifs | while read module; do
pascal@961 22 dir=$path/$(dirname $module)
pascal@961 23 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@961 24 cp -a $_pkg/$path/$module $fs/$dir
pascal@961 25 done
pascal@2562 26 touch $fs/etc/filesystems
pascal@961 27 }
pascal@961 28
pascal@961 29 # Post install/remove commands for Tazpkg.
pascal@961 30 post_install()
pascal@961 31 {
pascal@2562 32 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \
pascal@2562 33 echo "${PACKAGE#*-}" >> $1/etc/filesystems
pascal@2990 34 chroot "$1/" depmod -a $VERSION-slitaz
pascal@961 35 }
pascal@961 36
pascal@961 37 post_remove()
pascal@961 38 {
pascal@2562 39 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems
pascal@961 40 depmod -a $VERSION-slitaz
pascal@961 41 }
pascal@2990 42