summaryrefslogtreecommitdiffstats
path: root/audio/tagtool
diff options
context:
space:
mode:
Diffstat (limited to 'audio/tagtool')
-rw-r--r--audio/tagtool/README3
-rw-r--r--audio/tagtool/tagtool.SlackBuild20
-rw-r--r--audio/tagtool/tagtool.info10
3 files changed, 22 insertions, 11 deletions
diff --git a/audio/tagtool/README b/audio/tagtool/README
index 3d98db6fb2..7e7e35a95e 100644
--- a/audio/tagtool/README
+++ b/audio/tagtool/README
@@ -5,3 +5,6 @@ GNU General Public Licence (GPL).
Tag Tool can be used to edit tags one by one, but the most useful
features are the ability to easily tag or rename hundreds of files at
once, in any desired format.
+
+This version is a port to GTK+3 of the original tagtool project on
+SourceForge, which last had a release in 2008.
diff --git a/audio/tagtool/tagtool.SlackBuild b/audio/tagtool/tagtool.SlackBuild
index ac293abe4e..fa8fa979b2 100644
--- a/audio/tagtool/tagtool.SlackBuild
+++ b/audio/tagtool/tagtool.SlackBuild
@@ -1,9 +1,10 @@
-#!/bin/sh
+#!/bin/bash
# Slackware build script for tagtool
# Written by scion (grbzks@gmail.com)
# Ryan P.C. McQuen | Everett, WA | ryanpcmcquen@member.fsf.org
+# Copyright 2017-2023 Jeremy Hansen <jebrhansen+SBo@gmail.com>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -23,10 +24,13 @@
# with this program (most likely, a file named COPYING). If not, see
# <http://www.gnu.org/licenses/>.
+cd $(dirname $0) ; CWD=$(pwd)
+
PRGNAM=tagtool
-VERSION=${VERSION:-0.12.3}
-BUILD=${BUILD:-3}
+VERSION=${VERSION:-0.14.2}
+BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@@ -36,7 +40,11 @@ if [ -z "$ARCH" ]; then
esac
fi
-CWD=$(pwd)
+if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
+ echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
+ exit 0
+fi
+
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
@@ -61,7 +69,7 @@ rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
-tar -jxvf $CWD/$PRGNAM-$VERSION.tar.bz2
+tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
find -L . \
@@ -94,4 +102,4 @@ cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/audio/tagtool/tagtool.info b/audio/tagtool/tagtool.info
index 5b9bba253d..5b1d55e2bb 100644
--- a/audio/tagtool/tagtool.info
+++ b/audio/tagtool/tagtool.info
@@ -1,10 +1,10 @@
PRGNAM="tagtool"
-VERSION="0.12.3"
-HOMEPAGE="https://sourceforge.net/projects/tagtool/"
-DOWNLOAD="https://downloads.sourceforge.net/tagtool/tagtool-0.12.3.tar.bz2"
-MD5SUM="447b3a505fee68a82f25dcda9377b676"
+VERSION="0.14.2"
+HOMEPAGE="https://github.com/impegoraro/tagtool"
+DOWNLOAD="https://github.com/impegoraro/tagtool/archive/refs/tags/v0.14.2/tagtool-0.14.2.tar.gz"
+MD5SUM="b9c0a4d39c05d30d357e1775bb1d552a"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
-REQUIRES="id3lib"
+REQUIRES=""
MAINTAINER="Jeremy Hansen"
EMAIL="jebrhansen+SBo@gmail.com"