wok-stable diff linux-dlm/receipt @ rev 6687
Up: libwebkit to 1.2.5. Added gobject-introspection-dev, tar, gettext, and webkit-r-dev to build depends. It needs libwebkit-1.0.la to compile itself. Tar is needed cause of --version is not in busybox tar.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Tue Oct 12 21:49:16 2010 +0000 (2010-10-12) |
parents | |
children | 5b6e682d7c62 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/linux-dlm/receipt Tue Oct 12 21:49:16 2010 +0000 1.3 @@ -0,0 +1,43 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="linux-dlm" 1.7 +VERSION="2.6.34" 1.8 +CATEGORY="base-system" 1.9 +SHORT_DESC="The Linux kernel dlmfs module." 1.10 +MAINTAINER="devel@slitaz.org" 1.11 +DEPENDS="linux" 1.12 +WANTED="linux" 1.13 +WEB_SITE="http://www.kernel.org/" 1.14 +CONFIG_FILES="/etc/filesystems" 1.15 + 1.16 +# Modules paths and list 1.17 +MOD_PATH="/lib/modules/$VERSION-slitaz/kernel" 1.18 +MODULES="fs/dlm/dlm.ko.gz" 1.19 + 1.20 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.21 +genpkg_rules() 1.22 +{ 1.23 + mkdir -p ${fs}${MOD_PATH} $fs/etc 1.24 + for module in $MODULES 1.25 + do 1.26 + dir=$MOD_PATH/$(dirname $module) 1.27 + [ -d $fs/$dir ] || mkdir -p $fs/$dir 1.28 + cp -a $_pkg/$MOD_PATH/$module $fs/$dir 1.29 + done 1.30 + touch $fs/etc/filesystems 1.31 +} 1.32 + 1.33 +# Post install/remove commands for Tazpkg. 1.34 +post_install() 1.35 +{ 1.36 + grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \ 1.37 + echo "${PACKAGE#*-}" >> $1/etc/filesystems 1.38 + chroot "$1/" depmod -a $VERSION-slitaz 1.39 +} 1.40 + 1.41 +post_remove() 1.42 +{ 1.43 + sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems 1.44 + depmod -a $VERSION-slitaz 1.45 +} 1.46 +