diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2020-12-10 19:37:05 +0100 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2021-04-17 23:34:24 -0500 |
commit | 187b3b9ccf055b039cc18f284f03f7142b9b588b (patch) | |
tree | 88145106855920f034aecb6a79fe927aa5c80ebe /audio | |
parent | fd17935cb6d3974994281507673fe854717200b7 (diff) |
audio/kid3: Removed (added to Slackware).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/kid3/README | 9 | ||||
-rw-r--r-- | audio/kid3/doinst.sh | 9 | ||||
-rw-r--r-- | audio/kid3/kid3.SlackBuild | 121 | ||||
-rw-r--r-- | audio/kid3/kid3.info | 10 | ||||
-rw-r--r-- | audio/kid3/slack-desc | 19 |
5 files changed, 0 insertions, 168 deletions
diff --git a/audio/kid3/README b/audio/kid3/README deleted file mode 100644 index 1d8db2c536cc8..0000000000000 --- a/audio/kid3/README +++ /dev/null @@ -1,9 +0,0 @@ -If you want to easily tag multiple MP3, Ogg/Vorbis, FLAC, MPC, MP4/AAC, -MP2, Speex, TrueAudio and WavPack files (e.g. full albums) without -typing the same information again and again and have control over both -ID3v1 and ID3v2 tags, then Kid3 is the program you are looking for. - -kid3-cli for command line execution. - -libmp4v2 (for MP4 support), chromaprint (for fingerprinting detection) -and ffmpeg are optional dependencies. diff --git a/audio/kid3/doinst.sh b/audio/kid3/doinst.sh deleted file mode 100644 index 65c7e2eeb9aa5..0000000000000 --- a/audio/kid3/doinst.sh +++ /dev/null @@ -1,9 +0,0 @@ -if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 -fi - -if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then - if [ -x /usr/bin/gtk-update-icon-cache ]; then - /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1 - fi -fi diff --git a/audio/kid3/kid3.SlackBuild b/audio/kid3/kid3.SlackBuild deleted file mode 100644 index 4d587c0c77f1a..0000000000000 --- a/audio/kid3/kid3.SlackBuild +++ /dev/null @@ -1,121 +0,0 @@ -#!/bin/sh -# Slackware build script for <kid3> -# Written by Michales Michaloudes korgie@gmail.com - -PRGNAM=kid3 -VERSION=${VERSION:-3.5.0} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -MP4TAG=${MP4TAG:-yes} -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -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 - -# Autodetection of kde4 -if [ -f /usr/bin/kde4 ]; then - KDE4=";KDE" -else - KDE4="" -fi - -# Autodetection of libmp4v2 -if [ -h /usr/lib$LIBDIRSUFFIX/libmp4v2.so ]; then - MP4TAG="ON" -else - MP4TAG="OFF" -fi - -# Autodetection of chromaprint -if pkg-config --exists libchromaprint ; then - CHROMA="ON" -else - CHROMA="OFF" -fi - -# Autodetection of phonon -if pkg-config --exists phonon ; then - PHONON="ON" -else - PHONON="OFF" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.?z* -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 {} \; - -mkdir -p build -cd build - cmake \ - -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DLIB_SUFFIX:STRING=${LIBDIRSUFFIX} \ - -DLIB_INSTALL_DIR=/usr/lib${LIBDIRSUFFIX} \ - -DMAN_INSTALL_DIR=/usr/man \ - -DSYSCONF_INSTALL_DIR=/etc \ - -DINCLUDE_INSTALL_DIR=/usr/include \ - -DWITH_CHROMAPRINT="$CHROMA" \ - -DWITH_MP4V2="$MP4TAG" \ - -DWITH_APPS="Qt;CLI$KDE4" \ - -DWITH_PHONON="$PHONON" \ - -DWITH_DOCDIR="doc/$PRGNAM-$VERSION" \ - -DBUILD_SHARED_LIBS:BOOL=ON \ - -DCMAKE_BUILD_TYPE=Release .. - make - make install DESTDIR=$PKG -cd .. - -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 - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/ -cp -a \ - AUTHORS COPYING ChangeLog INSTALL LICENSE NEWS README \ - $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -if [ -d $PKG/usr/share/man ]; then - mv $PKG/usr/share/man $PKG/usr/ -fi - -mkdir -p $PKG/install -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} diff --git a/audio/kid3/kid3.info b/audio/kid3/kid3.info deleted file mode 100644 index 97b10f52deb2a..0000000000000 --- a/audio/kid3/kid3.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="kid3" -VERSION="3.5.0" -HOMEPAGE="http://kid3.sourceforge.net/" -DOWNLOAD="http://prdownloads.sourceforge.net/kid3/kid3-3.5.0.tar.gz" -MD5SUM="83f12a3336a200f86ce85b8126d9c0ad" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="id3lib" -MAINTAINER="Michales Michaloudes" -EMAIL="korgie@gmail.com" diff --git a/audio/kid3/slack-desc b/audio/kid3/slack-desc deleted file mode 100644 index 3d7bd74226c50..0000000000000 --- a/audio/kid3/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. -# Line up the first '|' above the ':' following the base package name, and -# the '|' on the right side marks the last column you can put a character in. -# You must make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -kid3: kid3 (KDE4 ID3 Tagger) -kid3: -kid3: If you want to easily tag multiple MP3 files (e.g. full albums) -kid3: without typing the same information again and again and have control -kid3: over both ID3v1 and ID3v2 tags, then Kid3 is the program you are -kid3: looking for. -kid3: -kid3: -kid3: -kid3: -kid3: |