wok-current view linux64-arcnet/receipt @ rev 25697

Up apache (CVE-2023-38709, CVE-2024-24795, CVE-2024-27316), up libarchive, qemu, add amdgpu/touchpad support and clean modules.list, up website for repology
author Stanislas Leduc <shann@slitaz.org>
date Tue Apr 16 17:00:21 2024 +0000 (5 weeks ago)
parents db14014acdba
children b24b6ee1d4d2
line source
1 # SliTaz package receipt.
3 PACKAGE="linux64-arcnet"
4 VERSION="5.10.215"
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="https://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 }