diff options
Diffstat (limited to 'libraries/muParser/muParser.SlackBuild')
-rw-r--r-- | libraries/muParser/muParser.SlackBuild | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/libraries/muParser/muParser.SlackBuild b/libraries/muParser/muParser.SlackBuild index ea554a8a9b..7173d1daa4 100644 --- a/libraries/muParser/muParser.SlackBuild +++ b/libraries/muParser/muParser.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for muParser -# Copyright 2011 Petar Petrov, ppetrov@paju.oulu.fi +# Copyright 2011-2012 Petar Petrov, ppetrov@paju.oulu.fi # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,12 +23,12 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=muParser -VERSION=${VERSION:-2.0.0} +VERSION=${VERSION:-2.1.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} SRCNAM=$(echo $PRGNAM | tr A-Z a-z) -SRCVER=v2_0_0 +SRCVER=v2_1_0 if [ -z "$ARCH" ]; then case "$( uname -m )" in @@ -72,6 +72,9 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; +# Make this executable... +chmod +x configure + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ @@ -91,7 +94,7 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ - docs/html/ Changes.txt Credits.txt Install.txt License.txt \ + docs/html/ Changes.txt Install.txt License.txt \ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |