wok-current view linux64-ocfs2/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 (3 weeks ago) |
parents | b24b6ee1d4d2 |
children |
line source
1 # SliTaz package receipt.
3 PACKAGE="linux64-ocfs2"
4 VERSION="5.10.221"
5 CATEGORY="base-system"
6 SHORT_DESC="ocfs2 filesystem"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://kernel.org/"
10 WANTED="linux"
11 DEPENDS="linux64"
12 PROVIDE="linux-ocfs2:linux64"
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
24 export src
25 export install
27 $wanted_stuff/list_modules.sh fs/ocfs2 | 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 }