diff options
author | Larry Hajali <larryhaja[at]gmail[dot]com> | 2015-03-13 06:51:17 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-03-13 06:51:17 +0700 |
commit | 180c0b5361e17b6fc2474fc99f702f6543d08276 (patch) | |
tree | 6872ed21af8cc78ab9c97286d7048d7fc5199ae2 /libraries/qt5/qt5.SlackBuild | |
parent | a4333c6071fa921137a14c1e5a69bc24384f1a75 (diff) |
libraries/qt5: Updated for version 5.4.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/qt5/qt5.SlackBuild')
-rw-r--r-- | libraries/qt5/qt5.SlackBuild | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/libraries/qt5/qt5.SlackBuild b/libraries/qt5/qt5.SlackBuild index 4ae5722c027a..f82f15d1c39c 100644 --- a/libraries/qt5/qt5.SlackBuild +++ b/libraries/qt5/qt5.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for qt5 -# Copyright 2013-2014 Larry Hajali <larryhaja[at]gmail[dot]com> +# Copyright 2013-2015 Larry Hajali <larryhaja[at]gmail[dot]com> # Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # @@ -46,8 +46,8 @@ # tailored to Qt 5. Modified by Larry Hajali. PRGNAM=qt5 -VERSION=${VERSION:-5.4.0} -BUILD=${BUILD:-2} +VERSION=${VERSION:-5.4.1} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -91,6 +91,11 @@ cd $TMP rm -rf ${PRGNAM/5/}-everywhere-opensource-src-$VERSION tar xvf $CWD/${PRGNAM/5/}-everywhere-opensource-src-$VERSION.tar.xz cd ${PRGNAM/5/}-everywhere-opensource-src-$VERSION +# Fix dangling symlinks. +rm -f qtwebengine/src/3rdparty/chromium/third_party/mesa/src/src/gallium/state_trackers/d3d1x/w32api +rm -f qtwebengine/src/3rdparty/chromium/third_party/webrtc/tools/e2e_quality/audio/perf +ln -s ../../../../../tools/perf\ + qtwebengine/src/3rdparty/chromium/third_party/webrtc/tools/e2e_quality/audio/perf chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ @@ -176,7 +181,7 @@ make install INSTALL_ROOT=$PKG if [ "${DOCS:-no}" == "yes" ]; then # Recreate Makefiles in order to use the just compiled qdoc. for doc in $(find . -name "Makefile*" | xargs egrep "^\s/usr/lib${LIBDIRSUFFIX}/qt5/bin/" \ - | cut -d':' -f1) + | cut -d':' -f1 | uniq) do rm -fv $doc done |