wok-current view linux64-usb-misc/receipt @ rev 25731

Merge wok for both arch and few updates
author Stanislas Leduc <shann@slitaz.org>
date Thu Dec 05 08:28:03 2024 +0000 (2 months ago)
parents b24b6ee1d4d2
children
line source
1 # SliTaz package receipt.
3 PACKAGE="linux64-usb-misc"
4 VERSION="5.10.221"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel misc. USB drivers, including the Lego USB tower."
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="GPL2"
9 WANTED="linux"
10 DEPENDS="linux64"
11 PROVIDE="linux-usb-misc:linux64"
12 WEB_SITE="https://www.kernel.org/"
14 HOST_ARCH="i486 x86_64"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 local path
19 src=$WOK/linux64/source/tmp
20 install=$install/linux64
21 path=lib/modules/$VERSION-slitaz64/kernel
22 mkdir -p $fs/$path
23 export src
24 export install
25 $wanted_stuff/list_modules.sh drivers/usb/misc | while read module; do
26 dir=$path/$(dirname $module)
27 [ -d $fs/$dir ] || mkdir -p $fs/$dir
28 cp -a $install/$path/$module $fs/$dir
29 done
31 }
33 # Post install/remove commands for Tazpkg.
34 post_install()
35 {
36 chroot "$root/" depmod -a $VERSION-slitaz64
37 }
39 post_remove()
40 {
41 chroot "$root/" depmod -a $VERSION-slitaz64
42 }