mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
libraries/soundtouch: Added to 12.0 repository
This commit is contained in:
parent
78e1fa947a
commit
e030832d8a
4 changed files with 94 additions and 0 deletions
7
libraries/soundtouch/README
Normal file
7
libraries/soundtouch/README
Normal file
|
@ -0,0 +1,7 @@
|
|||
SoundTouch is an open-source audio processing library that allows changing
|
||||
the sound tempo, pitch, and playback rate parameters independently from each
|
||||
other. For example:
|
||||
- tempo can be increased or decreased while maintaining the original pitch
|
||||
- pitch can be increased or decreased while maintaining the original tempo
|
||||
- Change playback rate that affects both tempo and pitch at the same time
|
||||
- Choose any combination of tempo/pitch/rate
|
19
libraries/soundtouch/slack-desc
Normal file
19
libraries/soundtouch/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# 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------------------------------------------------------|
|
||||
soundtouch: soundtouch (Sound processing library)
|
||||
soundtouch:
|
||||
soundtouch: soundtouch is an open-source audio processing library
|
||||
soundtouch: that allows changing the sound tempo, pitch and playback
|
||||
soundtouch: rate parameters independently from each other. Using it
|
||||
soundtouch: it's possible to for example change the tempo of a song,
|
||||
soundtouch: while the pitch stays the same.
|
||||
soundtouch:
|
||||
soundtouch: Also included is a library for detecting Beats Per Minute (BPM)
|
||||
soundtouch:
|
||||
soundtouch:
|
60
libraries/soundtouch/soundtouch.SlackBuild
Normal file
60
libraries/soundtouch/soundtouch.SlackBuild
Normal file
|
@ -0,0 +1,60 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for soundtouch 1.3.1
|
||||
# Written by heinz wiesinger hmwiesinger@gmx.at
|
||||
|
||||
set -e
|
||||
|
||||
PRGNAM=soundtouch
|
||||
VERSION=1.3.1
|
||||
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"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvzf $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 \
|
||||
--sysconfdir=/etc \
|
||||
--enable-shared \
|
||||
--disable-static \
|
||||
--localstatedir=/var
|
||||
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
# Cleanup doc-files installed by make-install
|
||||
mv $PKG/usr/doc/$PRGNAM $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
)
|
||||
|
||||
mkdir -p $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.tgz
|
8
libraries/soundtouch/soundtouch.info
Normal file
8
libraries/soundtouch/soundtouch.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="soundtouch"
|
||||
VERSION="1.3.1"
|
||||
HOMEPAGE="http://www.surina.net/soundtouch"
|
||||
DOWNLOAD="http://www.surina.net/soundtouch/soundtouch-1.3.1.tar.gz"
|
||||
MD5SUM="5e0185e81dbba2f2eed8581b7664ab04"
|
||||
MAINTAINER="heinz wiesinger"
|
||||
EMAIL="hmwiesinger@gmx.at"
|
||||
APPROVED="rworkman"
|
Loading…
Reference in a new issue