wok view linux-appletalk/receipt @ rev 2494

libiec61883: update build_depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 15 23:40:16 2009 +0000 (2009-03-15)
parents 6d87d79f7d77
children f306d126580e
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-appletalk"
4 VERSION="2.6.25.5"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel appletalk modules."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 WANTED="linux"
9 WEB_SITE="http://www.kernel.org/"
12 # Rules to gen a SliTaz package suitable for Tazpkg.
13 genpkg_rules()
14 {
15 local path
16 path=lib/modules/$VERSION-slitaz/kernel
17 mkdir -p $fs/$path
19 export src
20 export _pkg
22 $src/list_modules.sh drivers/net/appletalk net/appletalk \
23 net/802/p8022.ko.gz | while read module; do
24 dir=$path/$(dirname $module)
25 [ -d $fs/$dir ] || mkdir -p $fs/$dir
26 cp -a $_pkg/$path/$module $fs/$dir
27 done
28 }
30 # Post install/remove commands for Tazpkg.
31 post_install()
32 {
33 depmod -a -b "$1/" $VERSION-slitaz
34 }
36 post_remove()
37 {
38 depmod -a $VERSION-slitaz
39 }