diff options
author | Nick Smallbone <nick@smallbone.se> | 2024-10-13 11:15:46 +0200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-10-17 07:33:01 +0700 |
commit | e1369bcbb2c3a775b0cee43ebc95f6da8859945a (patch) | |
tree | 4e825302ac06919fa2597c5dd8370d8cd5a4323e /audio | |
parent | 70dc20aace6e688bf5f89310d1e763583f49e439 (diff) |
audio/quodlibet: Update README file; fix some wrong file permissions.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/quodlibet/README | 5 | ||||
-rw-r--r-- | audio/quodlibet/quodlibet.SlackBuild | 24 |
2 files changed, 9 insertions, 20 deletions
diff --git a/audio/quodlibet/README b/audio/quodlibet/README index 9ded78f4c02d..5abfd16a65ee 100644 --- a/audio/quodlibet/README +++ b/audio/quodlibet/README @@ -12,7 +12,7 @@ Operon is a command line music tagger. The user guide is available online at: -https://quodlibet.readthedocs.io/en/quodlibet-3.9/guide/ +https://quodlibet.readthedocs.io/en/quodlibet-4.5/guide/ To build a user guide for offline use, install Sphinx and sphinx-rtd-theme, and run: @@ -23,7 +23,7 @@ Quod Libet supports both GStreamer and XINE as audio backends. If you use XINE, you do not need the gst-plugins-* dependencies. See this link for how to switch to the XINE backend: -https://quodlibet.readthedocs.io/en/quodlibet-3.9/guide/playback/backends.html +https://quodlibet.readthedocs.io/en/quodlibet-4.5/guide/playback/backends.html Optional dependencies: @@ -31,5 +31,4 @@ Optional dependencies: * libmodplug - for MOD file support * musicbrainzngs - for the musicbrainz plugin * pyinotify - for the auto library update plugin - * webkit2gtk4 - for the lyrics window plugin * paho-mqtt - for the MQTT plugin diff --git a/audio/quodlibet/quodlibet.SlackBuild b/audio/quodlibet/quodlibet.SlackBuild index 1d9c2e961ca3..2b4403ff1a78 100644 --- a/audio/quodlibet/quodlibet.SlackBuild +++ b/audio/quodlibet/quodlibet.SlackBuild @@ -4,7 +4,7 @@ # # Written by K.D.Hedger kdhedger@yahoo.co.uk # Copyright 2016-2017 Edinaldo P. Silva, Rio de Janeiro, Brazil. -# Copyright 2020-2022 Nick Smallbone, Gothenburg, Sweden. +# Copyright 2020-2024 Nick Smallbone, Gothenburg, Sweden. # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -28,7 +28,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=quodlibet VERSION=${VERSION:-4.5.0} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -52,20 +52,6 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - set -e rm -rf $PKG @@ -75,10 +61,14 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; python3 setup.py install --root=$PKG -find $PKG/usr/share/man -type f -exec chmod 0644 {} \; mv $PKG/usr/share/man $PKG/usr find $PKG/usr/man -type f -exec gzip -9 {} \; for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done |