wok annotate linux-minix/receipt @ rev 15855

New kernel config and huge receipt clean up
author Christophe Lincoln <pankso@slitaz.org>
date Wed Jan 29 09:56:07 2014 +0100 (2014-01-29)
parents eb689de65d7e
children 08cf996a2307
rev   line source
pascal@3053 1 # SliTaz package receipt.
pascal@3053 2
pascal@3053 3 PACKAGE="linux-minix"
pascal@15670 4 VERSION="3.2.53"
pascal@3053 5 CATEGORY="base-system"
pascal@3053 6 SHORT_DESC="The Linux kernel minix module."
pankso@3864 7 MAINTAINER="devel@slitaz.org"
pascal@14657 8 LICENSE="GPL2"
pascal@3053 9 DEPENDS="linux"
pascal@3053 10 WANTED="linux"
pascal@3053 11 WEB_SITE="http://www.kernel.org/"
pascal@3053 12 CONFIG_FILES="/etc/filesystems"
pascal@3053 13
pascal@3053 14 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@3053 15 genpkg_rules()
pascal@3053 16 {
pascal@3053 17 local path
pankso@15855 18 path=lib/modules/$VERSION-slitaz/kernel
pascal@3053 19 mkdir -p $fs/$path $fs/etc
pankso@15855 20 export src install
slaxemulator@9700 21 $wanted_stuff/list_modules.sh fs/${PACKAGE#*-} | while read module; do
pascal@3053 22 dir=$path/$(dirname $module)
pascal@3053 23 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@15603 24 cp -a $install/$path/$module $fs/$dir
pascal@3053 25 done
pascal@3053 26 touch $fs/etc/filesystems
pascal@3053 27 }
pascal@3053 28
pascal@3053 29 # Post install/remove commands for Tazpkg.
pascal@3053 30 post_install()
pascal@3053 31 {
pascal@3053 32 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \
pascal@3053 33 echo "${PACKAGE#*-}" >> $1/etc/filesystems
pankso@15855 34 chroot "$root/" depmod -a $VERSION-slitaz
pascal@3053 35 }
pascal@3053 36
pascal@3053 37 post_remove()
pascal@3053 38 {
pascal@3053 39 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems
pankso@15855 40 chroot "$root/" depmod -a $VERSION-slitaz
pascal@3053 41 }
pascal@3053 42