diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2021-04-21 20:13:53 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2021-04-21 20:13:53 -0500 |
commit | c4e34e2e1fea5392ca5d24322e9b21b5813ff0b1 (patch) | |
tree | edb8efac11dff50dad832ea3ae799141279f56e6 /audio | |
parent | 033f2655cbd1c051555fcca5717e16956a0a3516 (diff) |
audio/ttaenc: Removed (no maintainer)
Diffstat (limited to 'audio')
-rw-r--r-- | audio/ttaenc/README | 11 | ||||
-rw-r--r-- | audio/ttaenc/slack-desc | 19 | ||||
-rw-r--r-- | audio/ttaenc/ttaenc.SlackBuild | 87 | ||||
-rw-r--r-- | audio/ttaenc/ttaenc.info | 10 |
4 files changed, 0 insertions, 127 deletions
diff --git a/audio/ttaenc/README b/audio/ttaenc/README deleted file mode 100644 index f03fb22d8689..000000000000 --- a/audio/ttaenc/README +++ /dev/null @@ -1,11 +0,0 @@ -ttaenc (TTA1 lossless audio encoder/decoder) - -TTA performs lossless compression on multichannel 8,16 and 24 bits data -of the Wav audio files. Being "lossless" means that no data-quality is -lost in the compression - when uncompressed, the data will be identical -to the original. The compression ratios of TTA depend on the type of -music file being compressed, but the compression size will generally -range between 30% - 70% of the original. TTA format supports both of -ID3v1/v2 and APEv2 tags. - -This package can coexist with "tta", also available in SlackBuilds. diff --git a/audio/ttaenc/slack-desc b/audio/ttaenc/slack-desc deleted file mode 100644 index 10fd45479bcf..000000000000 --- a/audio/ttaenc/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------------------------------------------------------| -ttaenc: ttaenc (TTA Lossless Audio compressor) -ttaenc: -ttaenc: TTA performs lossless compression on multichannel 8,16 and 24 bits -ttaenc: data of the Wav audio files. -ttaenc: -ttaenc: Home Page: http://en.true-audio.com/Free_Downloads/ -ttaenc: -ttaenc: -ttaenc: -ttaenc: -ttaenc: diff --git a/audio/ttaenc/ttaenc.SlackBuild b/audio/ttaenc/ttaenc.SlackBuild deleted file mode 100644 index a99390376b7b..000000000000 --- a/audio/ttaenc/ttaenc.SlackBuild +++ /dev/null @@ -1,87 +0,0 @@ -#!/bin/sh -# -# Slackware build script for ttaenc. -# -# Copyright 2015-2020 Edinaldo P. Silva, Rio de Janeiro, Brazil. -# All rights reserved. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -PRGNAM=ttaenc -VERSION=${VERSION:-3.4.1} -BUILD=${BUILD:-2} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i686 -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 -mkdir -p $TMP $PKG $OUTPUT -rm -rf $TMP/$PRGNAM-$VERSION -cd $TMP -tar xvf $CWD/$PRGNAM-$VERSION.tgz -mv $PRGNAM-$VERSION-bin $PRGNAM-$VERSION -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 {} \; - -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 - -install -d $PKG/usr/bin -install -D -m755 ttaenc $PKG/usr/bin/ttaenc - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a ChangeLog-3.4.1 COPYING README $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM-SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/audio/ttaenc/ttaenc.info b/audio/ttaenc/ttaenc.info deleted file mode 100644 index 8657a17925c2..000000000000 --- a/audio/ttaenc/ttaenc.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="ttaenc" -VERSION="3.4.1" -HOMEPAGE="http://en.true-audio.com/Free_Downloads/" -DOWNLOAD="http://sourceforge.net/projects/tta/files/tta/ttaenc-linux/ttaenc-3.4.1.tgz" -MD5SUM="0a493e4e4f7a7b83d59c83573f01f0b5" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="orphaned - no maintainer" -EMAIL="nobody@nowhere" |