diff options
Diffstat (limited to 'development/gsoap/gsoap.SlackBuild')
-rw-r--r-- | development/gsoap/gsoap.SlackBuild | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/development/gsoap/gsoap.SlackBuild b/development/gsoap/gsoap.SlackBuild index 21fbc59bf4..35afe3b735 100644 --- a/development/gsoap/gsoap.SlackBuild +++ b/development/gsoap/gsoap.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for gsoap -# 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 @@ -23,16 +23,14 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=gsoap -VERSION=2.7.13 +VERSION=2.7.17 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 @@ -62,11 +60,13 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-2.7 -tar xvf $CWD/${PRGNAM}_${VERSION}.tar.gz +unzip $CWD/${PRGNAM}_${VERSION}.zip cd $PRGNAM-2.7 chown -R root:root . chmod -R u+w,go+r-w,a-s . +autoreconf -vif + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ @@ -77,8 +77,7 @@ CXXFLAGS="$SLKCFLAGS" \ --build=$ARCH-slackware-linux # NOTICE: this will not build in parallel! -# set MAKEFLAGS="-j1" if you have problems -make +make -j1 make install-strip DESTDIR=$PKG mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION |