wok view linux-ieee1394/receipt @ rev 561

Up: slitaz-hacker (1.2) - Remove gtkrc desktop file and dep on lxappearance
author Christophe Lincoln <pankso@slitaz.org>
date Sat Apr 12 22:44:30 2008 +0200 (2008-04-12)
parents cd99ec381938
children 04b68c6ffdfa
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-ieee1394"
4 VERSION="2.6.24.2"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel ieee1394 modules."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 WANTED="linux"
9 WEB_SITE="http://www.kernel.org/"
11 # Rules to gen a SliTaz package suitable for Tazpkg.
12 genpkg_rules()
13 {
14 local path
15 path=lib/modules/$VERSION-slitaz/kernel
16 mkdir -p $fs/$path
17 while read module; do
18 dir=$path/$(dirname $module)
19 [ -d $fs/$dir ] || mkdir -p $fs/$dir
20 cp -a $_pkg/$path/$module $fs/$dir
21 done < stuff/modules-$VERSION.list
22 }
24 # Post install/remove commands for Tazpkg.
25 post_install()
26 {
27 depmod -a -b /$1
28 }
30 post_remove()
31 {
32 depmod -a
33 }