summaryrefslogtreecommitdiffstats
path: root/multimedia
diff options
context:
space:
mode:
author Robby Workman2021-04-20 06:57:57 +0200
committer Robby Workman2021-04-20 06:57:57 +0200
commit04ee281fdcb0cf5d08f7c337e33b4a4dac509b3b (patch)
treedb7ac9e81bc7b939d8edd662f7c25fd11b41e2e7 /multimedia
parent70f2cd901e32d2ef610e3c3132d7646c26dade98 (diff)
downloadslackbuilds-04ee281fdcb0cf5d08f7c337e33b4a4dac509b3b.tar.gz
multimedia/smtube: Build with qt5 by default
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/smtube/README6
-rw-r--r--multimedia/smtube/smtube.SlackBuild2
2 files changed, 1 insertions, 7 deletions
diff --git a/multimedia/smtube/README b/multimedia/smtube/README
index e4e60dc5ba..13cebd53b6 100644
--- a/multimedia/smtube/README
+++ b/multimedia/smtube/README
@@ -2,9 +2,3 @@ SMTube is an application that allows to browse, search and play YouTube
videos. Videos are played back with a media player (by default SMPlayer)
instead of a flash player, this allows better performance, particularly
with HD content.
-
-If you prefer to build SMTube against Qt5 rather than Qt4, install qt5
-and qt5-webkit (both available from SlackBuilds.org) and run the script
-like that:
-
- USE_QT5=yes ./smplayer.SlackBuild
diff --git a/multimedia/smtube/smtube.SlackBuild b/multimedia/smtube/smtube.SlackBuild
index d690e2dc2e..ecef6a8953 100644
--- a/multimedia/smtube/smtube.SlackBuild
+++ b/multimedia/smtube/smtube.SlackBuild
@@ -70,7 +70,7 @@ 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 {} \;
-if [ ${USE_QT5:-no} = yes ]; then
+if [ ${USE_QT5:-yes} = yes ]; then
QMAKE=qmake-qt5
LRELEASE=lrelease-qt5
else