diff options
author | Heinz Wiesinger <pprkut@liwjatan.at> | 2010-07-25 21:47:03 -0500 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-07-25 21:52:42 -0500 |
commit | 66d1e28738696f9a357075bb0e4587d3c4499900 (patch) | |
tree | fa19af83f587a6cb64057049f9d4e963725291e4 /office/scribus/scribus.SlackBuild | |
parent | ed89d626b0af8bed0d13de89006d8f463189328a (diff) | |
download | slackbuilds-66d1e28738696f9a357075bb0e4587d3c4499900.tar.gz |
office/scribus: Updated for version 1.3.7.
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'office/scribus/scribus.SlackBuild')
-rw-r--r-- | office/scribus/scribus.SlackBuild | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/office/scribus/scribus.SlackBuild b/office/scribus/scribus.SlackBuild index dc4384d203..19a49654da 100644 --- a/office/scribus/scribus.SlackBuild +++ b/office/scribus/scribus.SlackBuild @@ -3,7 +3,7 @@ # Slackware build script for scribus # Copyright 2006 Martin Lefebvre <dadexter@gmail.com> -# Copyright 2008-2010 Heinz Wiesinger <pprkut@liwjatan.at> +# Copyright 2008-2010 Heinz Wiesinger, Amsterdam, The Netherlands # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -27,16 +27,14 @@ # Including input by Yalla-One and some code cleanup by rworkman PRGNAM=scribus -VERSION=1.3.6 +VERSION=1.3.7 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 @@ -71,9 +69,6 @@ cd $PRGNAM-$VERSION chown -R root:root . chmod -R a-s,u+w,go+r-w . -#fix version mistake -sed -i "s|.\${VERSION_SUFFIX})|)|" CMakeLists.txt - cmake \ -DCMAKE_C_FLAGS="$SLKCFLAGS" \ -DCMAKE_CXX_FLAGS="$SLKCFLAGS" \ @@ -93,10 +88,7 @@ find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mv $PKG/usr/share/man $PKG/usr -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done -) +find $PKG/usr/man -type f -exec gzip -9 {} \; mv $PKG/usr/share/doc $PKG/usr cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |