diff options
author | Erik Hanson <erik@slackbuilds.org> | 2013-12-22 08:31:20 +0700 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-12-25 15:05:39 -0600 |
commit | 8787d9c31f23790ebe15e1a1b7a41072e9f1bcba (patch) | |
tree | edb0a5486aa7922b7c550d51efe5aa53d019cbc3 /libraries/physfs/physfs.SlackBuild | |
parent | 40674552f853da907d29651eaec32348fdf5f52f (diff) | |
download | slackbuilds-8787d9c31f23790ebe15e1a1b7a41072e9f1bcba.tar.gz |
libraries/physfs: Updated for version 2.0.3.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/physfs/physfs.SlackBuild')
-rw-r--r-- | libraries/physfs/physfs.SlackBuild | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/libraries/physfs/physfs.SlackBuild b/libraries/physfs/physfs.SlackBuild index 7ab2bde6a8..7a75e038fd 100644 --- a/libraries/physfs/physfs.SlackBuild +++ b/libraries/physfs/physfs.SlackBuild @@ -2,7 +2,7 @@ # # Slackware build script for physfs # -# Copyright 2009-2011 Erik W. Hanson, Minneapolis, MN, USA +# Copyright 2009-2013 Erik W. Hanson, Minneapolis, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,8 +23,8 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=physfs -VERSION=2.0.2 -BUILD=${BUILD:-2} +VERSION=2.0.3 +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -60,7 +60,7 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 cd $PRGNAM-$VERSION chown -R root:root . find -L . \ @@ -69,9 +69,6 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -# while we cut away -Werror to make gcc-4.6 happy, we turn off debug too -sed -i "s|-g -pipe -Werror|-pipe|" CMakeLists.txt - cmake \ -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ |