wok-current view linux64-dlm/receipt @ rev 25728
Merge wok for both arch and few updates
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Thu Dec 05 08:39:45 2024 +0000 (5 weeks ago) |
parents | b24b6ee1d4d2 |
children |
line source
1 # SliTaz package receipt.
3 PACKAGE="linux64-dlm"
4 VERSION="5.10.221"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel dlmfs module."
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 DEPENDS="linux64"
10 WANTED="linux"
11 PROVIDE="linux-dlm:linux64"
12 WEB_SITE="https://www.kernel.org/"
13 CONFIG_FILES="/etc/filesystems"
15 # Modules paths and list
16 MOD_PATH="lib/modules/$VERSION-slitaz64/kernel"
17 MODULES="fs/dlm/dlm.ko.xz"
19 HOST_ARCH="i486 x86_64"
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 src=$WOK/linux64/source/tmp
24 install=$install/linux64
25 mkdir -p ${fs}/${MOD_PATH} $fs/etc
26 for module in $MODULES
27 do
28 dir=$MOD_PATH/$(dirname $module)
29 [ -d $fs/$dir ] || mkdir -p $fs/$dir
30 cp -a $install/$MOD_PATH/$module $fs/$dir
31 done
32 touch $fs/etc/filesystems
33 }
35 # Post install/remove commands for Tazpkg.
36 post_install()
37 {
38 grep -qs ^${PACKAGE#*-}$ "$1/etc/filesystems" || \
39 echo "${PACKAGE#*-}" >> "$1/etc/filesystems"
40 chroot "$1/" depmod -a $VERSION-slitaz64
41 }
43 post_remove()
44 {
45 sed -i "/^${PACKAGE#*-}\$/d" "$1/etc/filesystems"
46 chroot "$1/" depmod -a $VERSION-slitaz64
47 }