wok-6.x diff linux64-jfs/receipt @ rev 13125
Up: raptor to 2.0.8.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Wed Jul 04 22:11:55 2012 +0000 (2012-07-04) |
parents | |
children | 416fab3c90c0 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/linux64-jfs/receipt Wed Jul 04 22:11:55 2012 +0000 1.3 @@ -0,0 +1,44 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="linux64-jfs" 1.7 +VERSION="3.2.14" 1.8 +BASEVER="${VERSION:0:3}" 1.9 +CATEGORY="base-system" 1.10 +SHORT_DESC="The Linux kernel jfs module." 1.11 +MAINTAINER="devel@slitaz.org" 1.12 +DEPENDS="linux64" 1.13 +WANTED="linux" 1.14 +PROVIDE="linux-jfs" 1.15 +WEB_SITE="http://www.kernel.org/" 1.16 +CONFIG_FILES="/etc/filesystems" 1.17 + 1.18 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.19 +genpkg_rules() 1.20 +{ 1.21 + local path 1.22 + _pkg=$_pkg/linux64 1.23 + path=lib/modules/$BASEVER-slitaz/kernel 1.24 + mkdir -p $fs/$path $fs/etc 1.25 + export src 1.26 + export _pkg 1.27 + $wanted_stuff/list_modules.sh fs/jfs | while read module; do 1.28 + dir=$path/$(dirname $module) 1.29 + [ -d $fs/$dir ] || mkdir -p $fs/$dir 1.30 + cp -a $_pkg/$path/$module $fs/$dir 1.31 + done 1.32 + touch $fs/etc/filesystems 1.33 +} 1.34 + 1.35 +# Post install/remove commands for Tazpkg. 1.36 +post_install() 1.37 +{ 1.38 + grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \ 1.39 + echo "${PACKAGE#*-}" >> $1/etc/filesystems 1.40 + chroot "$1/" depmod -a $BASEVER-slitaz 1.41 +} 1.42 + 1.43 +post_remove() 1.44 +{ 1.45 + sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems 1.46 + chroot "$1/" depmod -a $BASEVER-slitaz 1.47 +}