aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobby Workman <rworkman@slackbuilds.org>2010-05-18 00:52:43 -0500
committerRobby Workman <rworkman@slackbuilds.org>2010-05-19 09:06:58 -0500
commitc6a76605db61d96b1a44fc7a1d1acc282af83462 (patch)
tree6d3611d79e091a628b165267e3ec1ed090a069c7
parent123e40ddaff68faa91356dd22f37d325c4930cc4 (diff)
downloadslackbuilds-c6a76605db61d96b1a44fc7a1d1acc282af83462.tar.xz
libraries/libsamplerate: Removed (part of Slackware 13.1)
-rw-r--r--libraries/libsamplerate/README17
-rw-r--r--libraries/libsamplerate/libsamplerate.SlackBuild64
-rw-r--r--libraries/libsamplerate/libsamplerate.info10
-rw-r--r--libraries/libsamplerate/slack-desc19
4 files changed, 0 insertions, 110 deletions
diff --git a/libraries/libsamplerate/README b/libraries/libsamplerate/README
deleted file mode 100644
index 91c5ba017ae2..000000000000
--- a/libraries/libsamplerate/README
+++ /dev/null
@@ -1,17 +0,0 @@
-Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter
-for audio. One example of where such a thing would be useful is
-converting audio from the CD sample rate of 44.1kHz to the 48kHz
-sample rate used by DAT players.
-
-SRC is capable of arbitrary and time varying conversions ;
-from downsampling by a factor of 256 to upsampling by the same
-factor. Arbitrary in this case means that the ratio of input and
-output sample rates can be an irrational number. The conversion
-ratio can also vary with time for speeding up and slowing down
-effects.
-
-SRC provides a small set of converters to allow quality to be traded
-off against computation cost. The current best converter provides
-a signal-to-noise ratio of 97dB with -3dB passband extending from
-DC to 96% of the theoretical best bandwidth for a given pair of
-input and output sample rates.
diff --git a/libraries/libsamplerate/libsamplerate.SlackBuild b/libraries/libsamplerate/libsamplerate.SlackBuild
deleted file mode 100644
index 38edf15b1995..000000000000
--- a/libraries/libsamplerate/libsamplerate.SlackBuild
+++ /dev/null
@@ -1,64 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for libsamplerate 0.1.6
-# Written by paul wisehart paul@1ud2.com
-# Modified by Robby Workman <rworkman@slackbuilds.org>
-
-PRGNAM=libsamplerate
-VERSION=0.1.6
-ARCH=${ARCH:-i486}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-fi
-
-set -e # Exit on most errors
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
-cd $PRGNAM-$VERSION
-chown -R root:root .
-chmod -R u+w,go+r-w,a-s .
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --sysconfdir=/etc \
- --disable-static \
- --localstatedir=/var \
- --build=$ARCH-slackware-linux
-
-make
-make install DESTDIR=$PKG
-
-find $PKG | xargs 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 COPYING README doc/* $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/libraries/libsamplerate/libsamplerate.info b/libraries/libsamplerate/libsamplerate.info
deleted file mode 100644
index b31c8d14c659..000000000000
--- a/libraries/libsamplerate/libsamplerate.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="libsamplerate"
-VERSION="0.1.6"
-HOMEPAGE="http://www.mega-nerd.com/SRC/"
-DOWNLOAD="http://www.mega-nerd.com/SRC/libsamplerate-0.1.6.tar.gz"
-MD5SUM="4ccc22b21f469aac672dda8eb1320ea4"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="paul wisehart"
-EMAIL="wise@lupulin.net"
-APPROVED="rworkman"
diff --git a/libraries/libsamplerate/slack-desc b/libraries/libsamplerate/slack-desc
deleted file mode 100644
index 09a3f31c9e5b..000000000000
--- a/libraries/libsamplerate/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 ':'.
-
- |-----handy-ruler-----------------------------------------------|
-libsamplerate: libsamplerate (Sample Rate Converter for audio)
-libsamplerate:
-libsamplerate: Secret Rabbit Code (aka libsamplerate) is a Sample Rate
-libsamplerate: Converter for audio. One example of where such a thing
-libsamplerate: would be useful is converting audio from the CD sample rate
-libsamplerate: of 44.1kHz to the 48kHz sample rate used by DAT players.
-libsamplerate: SRC is capable of arbitrary and time varying conversions.
-libsamplerate: SRC provides a small set of converters to allow quality to
-libsamplerate: be traded off against computation cost.
-libsamplerate:
-libsamplerate: