wok-6.x annotate linux-logfs/receipt @ rev 14326
notecase: fix compile_rules (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Apr 08 09:44:35 2013 +0200 (2013-04-08) |
parents | 6f536abe4f0b |
children | ad59999b3fce |
rev | line source |
---|---|
pankso@5642 | 1 # SliTaz package receipt. |
pankso@5642 | 2 |
pankso@5642 | 3 PACKAGE="linux-logfs" |
pascal@14175 | 4 VERSION="3.2.40" |
pankso@12285 | 5 BASEVER="${VERSION:0:3}" |
pankso@5642 | 6 CATEGORY="base-system" |
pankso@5642 | 7 SHORT_DESC="The Linux kernel logfs module." |
pankso@5642 | 8 MAINTAINER="devel@slitaz.org" |
pankso@5642 | 9 DEPENDS="linux" |
pankso@5642 | 10 WANTED="linux" |
pankso@5642 | 11 WEB_SITE="http://www.kernel.org/" |
pankso@5642 | 12 CONFIG_FILES="/etc/filesystems" |
pankso@5642 | 13 |
pankso@5642 | 14 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@5642 | 15 genpkg_rules() |
pankso@5642 | 16 { |
pankso@5642 | 17 local path |
pankso@12285 | 18 path=lib/modules/$BASEVER-slitaz/kernel |
pankso@5642 | 19 mkdir -p $fs/$path $fs/etc |
pankso@5642 | 20 export src |
pankso@5642 | 21 export _pkg |
slaxemulator@9700 | 22 $wanted_stuff/list_modules.sh fs/${PACKAGE#*-} | while read module; do |
pankso@5642 | 23 dir=$path/$(dirname $module) |
pankso@5642 | 24 [ -d $fs/$dir ] || mkdir -p $fs/$dir |
pankso@5642 | 25 cp -a $_pkg/$path/$module $fs/$dir |
pankso@5642 | 26 done |
pankso@5642 | 27 touch $fs/etc/filesystems |
pankso@5642 | 28 } |
pankso@5642 | 29 |
pankso@5642 | 30 # Post install/remove commands for Tazpkg. |
pankso@5642 | 31 post_install() |
pankso@5642 | 32 { |
pankso@5642 | 33 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \ |
pankso@5642 | 34 echo "${PACKAGE#*-}" >> $1/etc/filesystems |
pankso@12285 | 35 chroot "$1/" depmod -a $BASEVER-slitaz |
pankso@5642 | 36 } |
pankso@5642 | 37 |
pankso@5642 | 38 post_remove() |
pankso@5642 | 39 { |
pankso@5642 | 40 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems |
pankso@12285 | 41 chroot "$1/" depmod -a $BASEVER-slitaz |
pankso@5642 | 42 } |
pankso@5642 | 43 |