wok-6.x annotate linux-hfsplus/receipt @ rev 3724
Update: xorg-libXtst (DEPENDS and BUILD_DEPENDS)
author | Matthew Sheets <rcx@zoominternet.net> |
---|---|
date | Tue Jul 21 16:59:26 2009 +0000 (2009-07-21) |
parents | f306d126580e |
children | 7df76f20d2c3 |
rev | line source |
---|---|
pascal@2160 | 1 # SliTaz package receipt. |
pascal@2160 | 2 |
pascal@2160 | 3 PACKAGE="linux-hfsplus" |
pascal@2990 | 4 VERSION="2.6.29.3" |
pascal@2160 | 5 CATEGORY="base-system" |
pascal@2160 | 6 SHORT_DESC="The Linux kernel hfsplus module." |
pascal@2160 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@2926 | 8 DEPENDS="linux" |
pascal@2160 | 9 WANTED="linux" |
pascal@2160 | 10 WEB_SITE="http://www.kernel.org/" |
pascal@2562 | 11 CONFIG_FILES="/etc/filesystems" |
pascal@2160 | 12 |
pascal@2160 | 13 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2160 | 14 genpkg_rules() |
pascal@2160 | 15 { |
pascal@2160 | 16 local path |
pascal@2160 | 17 path=lib/modules/$VERSION-slitaz/kernel |
pascal@2562 | 18 mkdir -p $fs/$path $fs/etc |
pascal@2160 | 19 export src |
pascal@2160 | 20 export _pkg |
pascal@2160 | 21 $src/list_modules.sh fs/hfsplus | while read module; do |
pascal@2160 | 22 dir=$path/$(dirname $module) |
pascal@2160 | 23 [ -d $fs/$dir ] || mkdir -p $fs/$dir |
pascal@2160 | 24 cp -a $_pkg/$path/$module $fs/$dir |
pascal@2160 | 25 done |
pascal@2562 | 26 touch $fs/etc/filesystems |
pascal@2160 | 27 } |
pascal@2160 | 28 |
pascal@2160 | 29 # Post install/remove commands for Tazpkg. |
pascal@2160 | 30 post_install() |
pascal@2160 | 31 { |
pascal@2160 | 32 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \ |
pascal@2160 | 33 echo "${PACKAGE#*-}" >> $1/etc/filesystems |
pascal@2990 | 34 chroot "$1/" depmod -a $VERSION-slitaz |
pascal@2160 | 35 } |
pascal@2160 | 36 |
pascal@2160 | 37 post_remove() |
pascal@2160 | 38 { |
pascal@2160 | 39 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems |
pascal@2160 | 40 depmod -a $VERSION-slitaz |
pascal@2160 | 41 } |