wok view linux-libre-dlm/receipt @ rev 21821

syslinux/kbd: check kbd malloc pointer (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 25 12:03:28 2019 +0200 (2019-08-25)
parents 9e01bc6321ea
children
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-libre-dlm"
4 VERSION="3.18.129-gnu"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux Libre kernel dlmfs module."
7 MAINTAINER="gokhlayeh@slitaz.org"
8 LICENSE="GPL2"
9 PROVIDE="linux-dlm"
10 DEPENDS="linux-libre"
11 WANTED="linux-libre"
12 WEB_SITE="http://www.fsfla.org/svnwiki/selibre/linux-libre/"
13 CONFIG_FILES="/etc/filesystems"
15 # Modules paths and list
16 MOD_PATH="lib/modules/$VERSION-slitaz/kernel"
17 MODULES="fs/dlm/dlm.ko.xz"
19 # Rules to gen a SliTaz package suitable for Tazpkg.
20 genpkg_rules()
21 {
22 mkdir -p ${fs}${MOD_PATH} $fs/etc
23 for module in $MODULES
24 do
25 dir=$MOD_PATH/$(dirname $module)
26 [ -d $fs/$dir ] || mkdir -p $fs/$dir
27 cp -a $install/$MOD_PATH/$module $fs/$dir
28 done
29 touch $fs/etc/filesystems
30 }
32 # Post install/remove commands for Tazpkg.
33 post_install()
34 {
35 grep -qs ^${PACKAGE##*-}$ "$1/etc/filesystems" || \
36 echo "${PACKAGE##*-}" >> "$1/etc/filesystems"
37 chroot "$1/" depmod -a $VERSION-slitaz
38 }
40 post_remove()
41 {
42 sed -i "/^${PACKAGE##*-}\$/d" "$1/etc/filesystems"
43 chroot "$1/" depmod -a $VERSION-slitaz
44 }