wok view linux64-arcnet/receipt @ rev 22099

Add python-incremental
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Nov 01 14:48:33 2019 +0100 (2019-11-01)
parents ffc20f9bd49f
children 73f36875e5a7
line source
1 # SliTaz package receipt.
3 PACKAGE="linux64-arcnet"
4 VERSION="3.16.55"
5 CATEGORY="base-system"
6 SHORT_DESC="arcnet kernel modules"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 WANTED="linux"
10 PROVIDE="linux-arcnet:linux64"
11 WEB_SITE="http://kernel.org/"
12 DEPENDS="linux64"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 local path
18 src=$WOK/linux64/source/tmp
19 install=$install/linux64
20 path=lib/modules/$VERSION-slitaz64/kernel
21 mkdir -p $fs/$path
23 export src
24 export install
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 $install/$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 "$root/" depmod -a $VERSION-slitaz64
44 }
46 post_remove()
47 {
48 chroot "$root/" depmod -a $VERSION-slitaz64
49 }