diff options
author | Nishant Limbachia <nishant@mnspace.net> | 2016-08-21 11:13:55 +0100 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2016-08-28 00:22:59 +0100 |
commit | 8c0bc964d3fcaa028d2f723e0e6b72d9c4bd8548 (patch) | |
tree | 2226a5ea8f14426acd508ce45672fafd6139af41 /audio/python-audiotools/python-audiotools.SlackBuild | |
parent | 0196091c86692b777e8575b87de91052d433e7b0 (diff) | |
download | slackbuilds-8c0bc964d3fcaa028d2f723e0e6b72d9c4bd8548.tar.gz |
audio/python-audiotools: Updated for version 3.1.1.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'audio/python-audiotools/python-audiotools.SlackBuild')
-rw-r--r-- | audio/python-audiotools/python-audiotools.SlackBuild | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/audio/python-audiotools/python-audiotools.SlackBuild b/audio/python-audiotools/python-audiotools.SlackBuild index 275d3a66d0..d5c3532c25 100644 --- a/audio/python-audiotools/python-audiotools.SlackBuild +++ b/audio/python-audiotools/python-audiotools.SlackBuild @@ -3,7 +3,7 @@ # Slackware build script for Python Audio Tools # Home Page: http://audiotools.sourceforge.net/ -# Copyright (c) 2010-2014, Nishant Limbachia, Hoffman Estates, IL, USA +# Copyright (c) 2010-2016, Nishant Limbachia, Hoffman Estates, IL, USA # <nishant _AT_ mnspace _DOT_ net> # All rights reserved. @@ -26,15 +26,15 @@ # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM="python-audiotools" -VERSION=${VERSION:-2.22} +VERSION=${VERSION:-3.1.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -SRCNAM="$(printf $PRGNAM | cut -f2 -d-)" +SRCNAM="audiotools" if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -45,8 +45,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" @@ -73,8 +73,7 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -# Fix for libcdio-0.9 and libcdio-paranoia-10.2+0.93 (-current) -sed -i -e 's:#include <cdio/:#include <cdio/paranoia/:' src/cdiomodule.h +( cd src; patch -p0 < $CWD/patches/cdiomodule_header.patch ) CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ |