wok view linux-dlm/receipt @ rev 17217

Up: file (5.20).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 14 11:50:51 2014 +0300 (2014-10-14)
parents eb689de65d7e
children 08cf996a2307
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-dlm"
4 VERSION="3.2.53"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel dlmfs module."
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 DEPENDS="linux"
10 WANTED="linux"
11 WEB_SITE="http://www.kernel.org/"
12 CONFIG_FILES="/etc/filesystems"
14 # Modules paths and list
15 MOD_PATH="lib/modules/$VERSION-slitaz/kernel"
16 MODULES="fs/dlm/dlm.ko.xz"
18 # Rules to gen a SliTaz package suitable for Tazpkg.
19 genpkg_rules()
20 {
21 mkdir -p ${fs}/${MOD_PATH} $fs/etc
22 for module in $MODULES
23 do
24 dir=$MOD_PATH/$(dirname $module)
25 [ -d $fs/$dir ] || mkdir -p $fs/$dir
26 cp -a $install/$MOD_PATH/$module $fs/$dir
27 done
28 touch $fs/etc/filesystems
29 }
31 # Post install/remove commands for Tazpkg.
32 post_install()
33 {
34 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \
35 echo "${PACKAGE#*-}" >> $1/etc/filesystems
36 chroot "$root/" depmod -a $VERSION-slitaz
37 }
39 post_remove()
40 {
41 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems
42 chroot "$root/" depmod -a $VERSION-slitaz
43 }