wok-stable annotate linux-video/receipt @ rev 1202
Add squirrelmail-vkeyboard plugin
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Aug 08 16:14:12 2008 +0000 (2008-08-08) |
parents | |
children | f306d126580e |
rev | line source |
---|---|
pascal@886 | 1 # SliTaz package receipt. |
pascal@886 | 2 |
pascal@886 | 3 PACKAGE="linux-video" |
pascal@886 | 4 VERSION="2.6.25.5" |
pascal@886 | 5 CATEGORY="base-system" |
pascal@886 | 6 SHORT_DESC="The Linux kernel video modules." |
pascal@886 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@886 | 8 WANTED="linux" |
pascal@886 | 9 WEB_SITE="http://www.kernel.org/" |
pascal@886 | 10 |
pascal@886 | 11 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@886 | 12 genpkg_rules() |
pascal@886 | 13 { |
pascal@886 | 14 local path |
pascal@886 | 15 path=lib/modules/$VERSION-slitaz/kernel |
pascal@886 | 16 mkdir -p $fs/$path |
pascal@886 | 17 export src |
pascal@886 | 18 export _pkg |
pascal@886 | 19 $src/list_modules.sh drivers/media/video drivers/video | \ |
pascal@886 | 20 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 |
pascal@886 | 25 } |
pascal@886 | 26 |
pascal@886 | 27 # Post install/remove commands for Tazpkg. |
pascal@886 | 28 post_install() |
pascal@886 | 29 { |
pascal@886 | 30 depmod -a -b "$1/" $VERSION-slitaz |
pascal@886 | 31 } |
pascal@886 | 32 |
pascal@886 | 33 post_remove() |
pascal@886 | 34 { |
pascal@886 | 35 depmod -a $VERSION-slitaz |
pascal@886 | 36 } |
pascal@886 | 37 |