wok annotate linux-agp/receipt @ rev 7732

fcitx:add --disable-table-data
author fireflyoo <lufeng369@gmail.com>
date Tue Dec 21 01:14:50 2010 +0800 (2010-12-21)
parents 5355ffc461cf
children 03d4663c81fa
rev   line source
pascal@886 1 # SliTaz package receipt.
pascal@886 2
pascal@886 3 PACKAGE="linux-agp"
slaxemulator@7131 4 VERSION="2.6.36"
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
pascal@3920 20 $src/slitaz/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@7239 26 for i in $(cat $WOK/$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 {
pascal@886 41 depmod -a $VERSION-slitaz
pascal@886 42 }
pascal@886 43