wok view linux-arcnet/receipt @ rev 21909

updated sic (1.1 -> 1.2)
author Hans-G?nter Theisgen
date Fri Oct 04 15:39:32 2019 +0100 (2019-10-04)
parents ffc20f9bd49f
children 73f36875e5a7
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-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 WEB_SITE="http://kernel.org/"
11 DEPENDS="linux"
13 # Rules to gen a SliTaz package suitable for Tazpkg.
14 genpkg_rules()
15 {
16 local path
17 path=lib/modules/$VERSION-slitaz/kernel
18 mkdir -p $fs/$path
20 export src install
22 $wanted_stuff/list_modules.sh drivers/net/arcnet drivers/net/arcnet/arcnet.ko.xz \
23 drivers/net/arcnet/com90xx.ko.xz drivers/net/arcnet/rfc1051.ko.xz | while read module; do
24 dir=$path/$(dirname $module)
25 [ -d $fs/$dir ] || mkdir -p $fs/$dir
26 cp -a $install/$path/$module $fs/$dir
27 done
29 for i in $(cat $wanted_stuff/modules.list); do
30 if [ -f $fs/$path/$i ]; then
31 rm -f $fs/$path/$i
32 fi
33 done
34 }
36 # Post install/remove commands for Tazpkg.
37 post_install()
38 {
39 chroot "$root/" depmod -a $VERSION-slitaz
40 }
42 post_remove()
43 {
44 chroot "$root/" depmod -a $VERSION-slitaz
45 }