diff options
author | Heinz Wiesinger <pprkut@liwjatan.at> | 2010-09-11 15:11:20 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-09-12 23:08:52 -0500 |
commit | 4412a8b7107a5aa588510b5f37bbafd847d80e71 (patch) | |
tree | 9e58b4444280d71086b291f2c51d7dca5a8cbb7c /development/icecream/icecream.SlackBuild | |
parent | bffb673c33d90e6974444c898c41d0396c16ee77 (diff) | |
download | slackbuilds-4412a8b7107a5aa588510b5f37bbafd847d80e71.tar.gz |
development/icecream: Updated for version 0.9.6.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'development/icecream/icecream.SlackBuild')
-rw-r--r-- | development/icecream/icecream.SlackBuild | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/development/icecream/icecream.SlackBuild b/development/icecream/icecream.SlackBuild index 7b6faf2e39..0a745b9990 100644 --- a/development/icecream/icecream.SlackBuild +++ b/development/icecream/icecream.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for icecream -# Copyright 2009 Heinz Wiesinger <pprkut@liwjatan.at> +# Copyright 2009-2010 Heinz Wiesinger, Amsterdam, The Netherlands # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,16 +24,14 @@ PRGNAM=icecream SRCNAM=icecc -VERSION=0.9.4 +VERSION=0.9.6 BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -100,8 +98,21 @@ for i in g++ gcc cc c++ $ARCH-slackware-linux-c++ \ done mkdir -p $PKG/usr/man/{man1,man7} -cp $CWD/manpages/*.1.gz $PKG/usr/man/man1/ -cp $CWD/manpages/*.7.gz $PKG/usr/man/man7/ +cd doc + for i in icecc iceccd scheduler; do + meinproc4 \ + --stylesheet /usr/share/apps/ksgmltools2/customization/kde-man.xsl \ + man-$i.1.docbook + mv manpage.troff $PKG/usr/man/man1/$i.1 + done + + meinproc4 \ + --stylesheet /usr/share/apps/ksgmltools2/customization/kde-man.xsl \ + man-icecream.7.docbook + mv manpage.troff $PKG/usr/man/man7/icecream.7 +cd - + +find $PKG/usr/man -type f -exec gzip -9 {} \; mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a COPYING NEWS README TODO $PKG/usr/doc/$PRGNAM-$VERSION |