audio/puddletag: Updated for version 2.0.1. New Maintainer.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
b7791386e6
commit
1b4bb13feb
|
@ -1,7 +1,11 @@
|
||||||
Puddletag is a audio tag editor for GNU/Linux similar to the
|
Puddletag is a audio tag editor for GNU/Linux similar to the Windows
|
||||||
Windows program Mp3tag. Unlike most taggers for GNU/Linux, it uses a
|
program Mp3tag. Unlike most taggers for GNU/Linux, it uses a
|
||||||
spreadsheet-like layout so that all the tags you want to edit by hand
|
spreadsheet-like layout so that all the tags you want to edit by hand
|
||||||
are visible and easily editable.
|
are visible and easily editable.
|
||||||
|
|
||||||
Optional / Recommended packages are: gst0-ffmpeg, gst0-plugins-bad,
|
Optional, but recommended packages are: gst0-ffmpeg, gst0-plugins-bad,
|
||||||
gst0-plugins-ugly, gst0-python, quodlibet, and chromaprint.
|
gst0-plugins-ugly, gst0-python, quodlibet, and chromaprint.
|
||||||
|
|
||||||
|
NOTE: configobj and mutagen need to be built with python3 support. They
|
||||||
|
will automatically provide python3 modules if the SlackBuild is ran
|
||||||
|
with python3 installed.
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
# Copyright 2012-2014 Bill Kirkpatrick, Cedar Lane, TX USA <bkirkp@gmail.com>
|
# Copyright 2012-2014 Bill Kirkpatrick, Cedar Lane, TX USA <bkirkp@gmail.com>
|
||||||
# Copyright 2016-2017 Philip van der Hoeven, Almere, The Netherlands
|
# Copyright 2016-2017 Philip van der Hoeven, Almere, The Netherlands
|
||||||
|
# Copyright 2020 Jeremy Hansen <jebrhansen+SBo -at- gmail.com>
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use of this script, with or without modification, is
|
# Redistribution and use of this script, with or without modification, is
|
||||||
|
@ -24,7 +25,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=puddletag
|
PRGNAM=puddletag
|
||||||
VERSION=${VERSION:-1.2.0}
|
VERSION=${VERSION:-2.0.1}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
|
@ -70,7 +71,8 @@ find -L . \
|
||||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||||
|
|
||||||
python setup.py install --root=$PKG
|
cd source
|
||||||
|
python3 setup.py install --root=$PKG
|
||||||
|
|
||||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||||
|
@ -81,7 +83,7 @@ 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
|
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||||
|
|
||||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
cp -a HACKING PKG-INFO README THANKS TODO $PKG/usr/doc/$PRGNAM-$VERSION
|
cp -a LICENSE MANIFEST NEWS ../README.md THANKS TODO changelog $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||||
|
|
||||||
mkdir -p $PKG/install
|
mkdir -p $PKG/install
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
PRGNAM="puddletag"
|
PRGNAM="puddletag"
|
||||||
VERSION="1.2.0"
|
VERSION="2.0.1"
|
||||||
HOMEPAGE="http://docs.puddletag.net"
|
HOMEPAGE="http://docs.puddletag.net"
|
||||||
DOWNLOAD="https://github.com/keithgg/puddletag/releases/download/v1.2.0/puddletag-1.2.0.tar.gz"
|
DOWNLOAD="https://github.com/puddletag/puddletag/archive/2.0.1/puddletag-2.0.1.tar.gz"
|
||||||
MD5SUM="9be5c5fd6d1b1c4807069bd654614064"
|
MD5SUM="e9fda1de4edbb949f5072334a80ed3cd"
|
||||||
DOWNLOAD_x86_64=""
|
DOWNLOAD_x86_64=""
|
||||||
MD5SUM_x86_64=""
|
MD5SUM_x86_64=""
|
||||||
REQUIRES="configobj mutagen pyparsing"
|
REQUIRES="python3 PyQt5 configobj mutagen python3-pyparsing"
|
||||||
MAINTAINER="Philip van der Hoeven"
|
MAINTAINER="Jeremy Hansen"
|
||||||
EMAIL="philip@vd-hoeven.nl"
|
EMAIL="jebrhansen+SBo@gmail.com"
|
||||||
|
|
Loading…
Reference in New Issue