wok annotate linux-ieee1394/receipt @ rev 1602

Add perl-net-telnet
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 19 11:13:50 2008 +0000 (2008-10-19)
parents 998d2b306f24
children f306d126580e
rev   line source
pascal@521 1 # SliTaz package receipt.
pascal@521 2
pascal@521 3 PACKAGE="linux-ieee1394"
pascal@886 4 VERSION="2.6.25.5"
pascal@521 5 CATEGORY="base-system"
pascal@521 6 SHORT_DESC="The Linux kernel ieee1394 modules."
pascal@521 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@521 8 WANTED="linux"
pascal@521 9 WEB_SITE="http://www.kernel.org/"
pascal@521 10
pascal@521 11 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@521 12 genpkg_rules()
pascal@521 13 {
pascal@521 14 local path
pascal@521 15 path=lib/modules/$VERSION-slitaz/kernel
pascal@521 16 mkdir -p $fs/$path
pascal@886 17 export src
pascal@886 18 export _pkg
pascal@886 19 $src/list_modules.sh drivers/ieee1394 | while read module; do
pascal@521 20 dir=$path/$(dirname $module)
pascal@521 21 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@521 22 cp -a $_pkg/$path/$module $fs/$dir
pascal@886 23 done
pascal@521 24 }
pascal@521 25
pascal@521 26 # Post install/remove commands for Tazpkg.
pascal@521 27 post_install()
pascal@521 28 {
pascal@886 29 depmod -a -b "$1/" $VERSION-slitaz
pascal@521 30 }
pascal@521 31
pascal@521 32 post_remove()
pascal@521 33 {
pascal@886 34 depmod -a $VERSION-slitaz
pascal@521 35 }
pascal@521 36