diff options
Diffstat (limited to 'audio/clementine/clementine.SlackBuild')
-rw-r--r-- | audio/clementine/clementine.SlackBuild | 21 |
1 files changed, 6 insertions, 15 deletions
diff --git a/audio/clementine/clementine.SlackBuild b/audio/clementine/clementine.SlackBuild index 8f6d7039e0..75e2d2e0e3 100644 --- a/audio/clementine/clementine.SlackBuild +++ b/audio/clementine/clementine.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for clementine -# Copyright 2010 David Woodfall <dave@dawoodfall.net> +# Copyright 2010 David Woodfall <dave@tty1.uk> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -25,9 +25,8 @@ # Modified by SlackBuilds.org PRGNAM=clementine -SRCNAM=${PRGNAM/c/C} -VERSION=${VERSION:-1.3.1_c7f3ae9} -COMMITVERSION="c7f3ae93e0dbc0d7a04e7691114d9faab0da1740" +VERSION=${VERSION:-1.3.1_560_g248f1d8} +SRCVERSION=${VERSION//_/-} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -63,9 +62,9 @@ set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -rm -rf $SRCNAM-$COMMITVERSION -tar xvf $CWD/$SRCNAM-$COMMITVERSION.tar.gz -cd $SRCNAM-$COMMITVERSION +rm -rf $PRGNAM-$SRCVERSION +tar xvf $CWD/$PRGNAM-$SRCVERSION.tar.xz +cd $PRGNAM-$SRCVERSION chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ @@ -73,14 +72,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 {} \; -patch -p1 < $CWD/sqlite.patch - -# This is no longer needed but I'll keep it around just in case the above fails -# for any reason. -# Add upstream patch for chromaprint 1.4 compatibility -# https://github.com/clementine-player/Clementine/commit/ded312685735fc266d4154d355286eeb86db3bcd -#patch -p1 < $CWD/chromaprint-1.4.patch - mkdir build cd build cmake \ |