wok annotate linux-jfs/receipt @ rev 13457

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