wok view linux64-arcnet/receipt @ rev 15769

Up tazinst (3.94)
author Dominique Corbex <domcox@slitaz.org>
date Tue Jan 07 21:51:41 2014 +0100 (2014-01-07)
parents 8873e661671a
children 5ca86f3045d4
line source
1 # SliTaz package receipt.
3 PACKAGE="linux64-arcnet"
4 VERSION="3.2.53"
5 BASEVER="${VERSION:0:3}"
6 CATEGORY="base-system"
7 SHORT_DESC="arcnet kernel modules"
8 MAINTAINER="slaxemulator@gmail.com"
9 LICENSE="GPL2"
10 WANTED="linux"
11 PROVIDE="linux-arcnet"
12 WEB_SITE="http://kernel.org/"
13 DEPENDS="linux64"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 local path
19 _pkg=$install/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/arcnet drivers/net/arcnet/arcnet.ko.xz \
27 drivers/net/arcnet/com90xx.ko.xz drivers/net/arcnet/rfc1051.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 }