wok annotate linux-hfs/receipt @ rev 3274
pcmanfm: Add chinese name and comment to pcmanfm.desktop
author | Chen Yufei <tsjz@ymail.com> |
---|---|
date | Tue Jun 02 12:45:47 2009 +0800 (2009-06-02) |
parents | |
children | 7df76f20d2c3 |
rev | line source |
---|---|
pascal@3053 | 1 # SliTaz package receipt. |
pascal@3053 | 2 |
pascal@3053 | 3 PACKAGE="linux-hfs" |
pascal@3053 | 4 VERSION="2.6.29.3" |
pascal@3053 | 5 CATEGORY="base-system" |
pascal@3053 | 6 SHORT_DESC="The Linux kernel hfs module." |
pascal@3053 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@3053 | 8 DEPENDS="linux" |
pascal@3053 | 9 WANTED="linux" |
pascal@3053 | 10 WEB_SITE="http://www.kernel.org/" |
pascal@3053 | 11 CONFIG_FILES="/etc/filesystems" |
pascal@3053 | 12 |
pascal@3053 | 13 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@3053 | 14 genpkg_rules() |
pascal@3053 | 15 { |
pascal@3053 | 16 local path |
pascal@3053 | 17 path=lib/modules/$VERSION-slitaz/kernel |
pascal@3053 | 18 mkdir -p $fs/$path $fs/etc |
pascal@3053 | 19 export src |
pascal@3053 | 20 export _pkg |
pascal@3053 | 21 $src/list_modules.sh fs/${PACKAGE#*-} | while read module; do |
pascal@3053 | 22 dir=$path/$(dirname $module) |
pascal@3053 | 23 [ -d $fs/$dir ] || mkdir -p $fs/$dir |
pascal@3053 | 24 cp -a $_pkg/$path/$module $fs/$dir |
pascal@3053 | 25 done |
pascal@3053 | 26 touch $fs/etc/filesystems |
pascal@3053 | 27 } |
pascal@3053 | 28 |
pascal@3053 | 29 # Post install/remove commands for Tazpkg. |
pascal@3053 | 30 post_install() |
pascal@3053 | 31 { |
pascal@3053 | 32 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \ |
pascal@3053 | 33 echo "${PACKAGE#*-}" >> $1/etc/filesystems |
pascal@3053 | 34 chroot "$1/" depmod -a $VERSION-slitaz |
pascal@3053 | 35 } |
pascal@3053 | 36 |
pascal@3053 | 37 post_remove() |
pascal@3053 | 38 { |
pascal@3053 | 39 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems |
pascal@3053 | 40 depmod -a $VERSION-slitaz |
pascal@3053 | 41 } |
pascal@3053 | 42 |