wok view linux64-appletalk/receipt @ rev 15123

htmldoc: fix bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 14 22:27:18 2013 +0000 (2013-08-14)
parents 416fab3c90c0
children 051931e905b0
line source
1 # SliTaz package receipt.
3 PACKAGE="linux64-appletalk"
4 VERSION="3.2.40"
5 BASEVER="${VERSION:0:3}"
6 CATEGORY="base-system"
7 SHORT_DESC="The Linux kernel appletalk modules."
8 MAINTAINER="devel@slitaz.org"
9 LICENSE="GPL2"
10 DEPENDS="linux64"
11 WANTED="linux"
12 PROVIDE="linux-appletalk"
13 WEB_SITE="http://www.kernel.org/"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 local path
19 _pkg=$_pkg/linux64
20 path=lib/modules/$BASEVER-slitaz/kernel
21 mkdir -p $fs/$path
23 export src
24 export _pkg
26 $wanted_stuff/list_modules.sh drivers/net/appletalk net/appletalk \
27 net/802/p8022.ko.xz | while read module; do
28 dir=$path/$(dirname $module)
29 [ -d $fs/$dir ] || mkdir -p $fs/$dir
30 cp -a $_pkg/$path/$module $fs/$dir
31 done
33 for i in $(cat $wanted_stuff/modules.list); do
34 if [ -f $fs/$path/$i ]; then
35 rm -f $fs/$path/$i
36 fi
37 done
38 }
40 # Post install/remove commands for Tazpkg.
41 post_install()
42 {
43 chroot "$1/" depmod -a $BASEVER-slitaz
44 }
46 post_remove()
47 {
48 chroot "$1/" depmod -a $BASEVER-slitaz
49 }