wok-current annotate linux-jfs/receipt @ rev 2794
Add FLTK 2.0.x (Fast Light Tool Kit devel branch)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Tue Apr 28 15:37:11 2009 +0200 (2009-04-28) |
parents | 532538d67b1c |
children | f306d126580e |
rev | line source |
---|---|
pascal@961 | 1 # SliTaz package receipt. |
pascal@961 | 2 |
pascal@961 | 3 PACKAGE="linux-jfs" |
pascal@961 | 4 VERSION="2.6.25.5" |
pascal@961 | 5 CATEGORY="base-system" |
pascal@961 | 6 SHORT_DESC="The Linux kernel jfs module." |
pascal@961 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@961 | 8 WANTED="linux" |
pascal@961 | 9 WEB_SITE="http://www.kernel.org/" |
pascal@2562 | 10 CONFIG_FILES="/etc/filesystems" |
pascal@961 | 11 |
pascal@961 | 12 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@961 | 13 genpkg_rules() |
pascal@961 | 14 { |
pascal@961 | 15 local path |
pascal@961 | 16 path=lib/modules/$VERSION-slitaz/kernel |
pascal@2562 | 17 mkdir -p $fs/$path $fs/etc |
pascal@961 | 18 export src |
pascal@961 | 19 export _pkg |
pascal@961 | 20 $src/list_modules.sh fs/jfs | while read module; do |
pascal@961 | 21 dir=$path/$(dirname $module) |
pascal@961 | 22 [ -d $fs/$dir ] || mkdir -p $fs/$dir |
pascal@961 | 23 cp -a $_pkg/$path/$module $fs/$dir |
pascal@961 | 24 done |
pascal@2562 | 25 touch $fs/etc/filesystems |
pascal@961 | 26 } |
pascal@961 | 27 |
pascal@961 | 28 # Post install/remove commands for Tazpkg. |
pascal@961 | 29 post_install() |
pascal@961 | 30 { |
pascal@2562 | 31 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \ |
pascal@2562 | 32 echo "${PACKAGE#*-}" >> $1/etc/filesystems |
pascal@961 | 33 depmod -a -b "$1/" $VERSION-slitaz |
pascal@961 | 34 } |
pascal@961 | 35 |
pascal@961 | 36 post_remove() |
pascal@961 | 37 { |
pascal@2562 | 38 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems |
pascal@961 | 39 depmod -a $VERSION-slitaz |
pascal@961 | 40 } |