audio/quodlibet: New maintainer.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Nick Smallbone 2020-03-14 06:29:35 +07:00 committed by Willy Sudiarto Raharjo
parent 298051ad05
commit 0783ed2b6e
No known key found for this signature in database
GPG key ID: 887B8374D7333381
3 changed files with 29 additions and 7 deletions

View file

@ -10,8 +10,23 @@ as Quod Libet.
Operon is a command line music tagger.
Optional dependencie: musicbrainzngs
The user guide is available online at:
There's an option to use XINE backend instead to avoid
installing gst-plugins-*. See latest guide here:
https://quodlibet.readthedocs.io/en/latest/guide/playback/backends.html
https://quodlibet.readthedocs.io/en/quodlibet-3.9/guide/
To build a user guide for offline use, install Sphinx and sphinx_rtd_theme,
and run:
DOCS=yes ./quodlibet.SlackBuild
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
Optional dependencies:
* musicbrainzngs - for the musicbrainz plugin
* pyinotify - for the auto library update plugin
* webkit2gtk - for the lyrics window plugin

View file

@ -2,8 +2,9 @@
#
# Slackware build script for quodlibet.
#
# Copyright 2016-2020 Edinaldo P. Silva, Rio de Janeiro, Brazil.
# Written by K.D.Hedger kdhedger@yahoo.co.uk
# Copyright 2016-2017 Edinaldo P. Silva, Rio de Janeiro, Brazil.
# Copyright 2020 Nick Smallbone, Gothenburg, Sweden.
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -78,6 +79,12 @@ mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a COPYING NEWS README $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
DOCS=${DOCS:-no}
if [ $DOCS = yes ] || [ $DOCS = y ] || [ $DOCS = true ]; then
python setup.py build_sphinx
cp -a build/sphinx $PKG/usr/doc/$PRGNAM-$VERSION/user_guide
fi
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh

View file

@ -6,5 +6,5 @@ MD5SUM="49772b4c8f6044344b2c5c8bb4f84f9c"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="gst-plugins-bad gst-python gst-plugins-ugly mutagen futures python-faulthandler feedparser"
MAINTAINER="orphaned - no maintainer"
EMAIL="nobody@nowhere"
MAINTAINER="Nick Smallbone"
EMAIL="nick@smallbone.se"