wok-current view linux64-input-touchscreen/receipt @ rev 25792

Fix openbox menu, label keymap on lxpanel and add miss it translation for tazpkg
author Stanislas Leduc <shann@slitaz.org>
date Tue Oct 07 05:55:24 2025 +0000 (2 weeks ago)
parents d7c9e4ccdec8
children
line source
1 # SliTaz package receipt.
3 PACKAGE="linux64-input-touchscreen"
4 VERSION="5.10.238"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel touchscreen input drivers."
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="GPL2"
9 WANTED="linux"
10 DEPENDS="linux64"
11 PROVIDE="linux-input-touchscreen: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/input/touchscreen | \
26 while read module; do
27 dir=$path/$(dirname $module)
28 [ -d $fs/$dir ] || mkdir -p $fs/$dir
29 cp -a $install/$path/$module $fs/$dir
30 done
32 for i in $(cat $wanted_stuff/modules.list); do
33 if [ -f $fs/$path/$i ]; then
34 rm -f $fs/$path/$i
35 fi
36 done
37 }
39 # Post install/remove commands for Tazpkg.
40 post_install()
41 {
42 chroot "$root/" depmod -a $VERSION-slitaz64
43 }
45 post_remove()
46 {
47 chroot "$root/" depmod -a $VERSION-slitaz64
48 }