audio/tuneit: Miscellaneous cleanups

This commit is contained in:
Robby Workman 2010-05-19 21:45:56 -05:00
parent ae8afb4bee
commit 35521a2da2
2 changed files with 16 additions and 4 deletions

View file

@ -9,9 +9,9 @@ CPU intensive.
As audio capture backends, ALSA and JACK are supported. By default, tuneit
will try to use the hw:0,0 ALSA device.
This requires fftw. jack is an optional dependency, but enabled by default
in this build script. If you don't want jack support, then run the script
with USE_JACK=no in the build environment.
This uses jack an optional dependency, but it is enabled by default in this
build script. If you don't want jack support, then run the script with
USE_JACK=no in the build environment.
Tip: Unless you're on a really slow ancient system, you probably want
to always run tuneit with the -f option.

View file

@ -6,10 +6,19 @@
PRGNAM=tuneit
VERSION=${VERSION:-0.3}
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) export ARCH=i486 ;;
arm*) export ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) export ARCH=$( uname -m ) ;;
esac
fi
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
@ -24,6 +33,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
fi
set -e