wok annotate linux-agp/receipt @ rev 11659

xfe, Improve receipt
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Feb 12 22:40:16 2012 +0100 (2012-02-12)
parents 1d89aa1672da
children 6f536abe4f0b
rev   line source
pascal@886 1 # SliTaz package receipt.
pascal@886 2
pascal@886 3 PACKAGE="linux-agp"
slaxemulator@8085 4 VERSION="2.6.37"
pascal@886 5 CATEGORY="base-system"
pascal@886 6 SHORT_DESC="The Linux kernel AGP modules."
pascal@886 7 MAINTAINER="erjo@slitaz.org"
pascal@2926 8 DEPENDS="linux"
pascal@886 9 WANTED="linux"
pascal@886 10 WEB_SITE="http://www.kernel.org/"
pascal@886 11
pascal@886 12 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@886 13 genpkg_rules()
pascal@886 14 {
pascal@886 15 local path
pascal@886 16 path=lib/modules/$VERSION-slitaz/kernel
pascal@886 17 mkdir -p $fs/$path
pascal@886 18 export src
pascal@886 19 export _pkg
slaxemulator@9700 20 $wanted_stuff/list_modules.sh drivers/char/agp | while read module; do
pascal@886 21 dir=$path/$(dirname $module)
pascal@886 22 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@886 23 cp -a $_pkg/$path/$module $fs/$dir
pascal@886 24 done
slaxemulator@7239 25
slaxemulator@9700 26 for i in $(cat $wanted_stuff/modules-$VERSION.list); do
slaxemulator@7239 27 if [ $fs/lib/modules/$VERSION-slitaz/kernel/$i ]; then
slaxemulator@7239 28 rm -f $fs/lib/modules/$VERSION-slitaz/kernel/$i
slaxemulator@7239 29 fi
slaxemulator@7239 30 done
pascal@886 31 }
pascal@886 32
pascal@886 33 # Post install/remove commands for Tazpkg.
pascal@886 34 post_install()
pascal@886 35 {
pascal@2990 36 chroot "$1/" depmod -a $VERSION-slitaz
pascal@886 37 }
pascal@886 38
pascal@886 39 post_remove()
pascal@886 40 {
slaxemulator@8681 41 chroot "$1/" depmod -a $VERSION-slitaz
pascal@886 42 }
pascal@886 43