summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
author Robby Workman2010-05-20 04:45:56 +0200
committer Robby Workman2010-05-21 08:31:16 +0200
commit35521a2da28d8d9de31ef593ec7f4623f404e964 (patch)
tree5783088f1da6bdb87cbf5b33fd3e67d52ddcb7e8 /audio
parentae8afb4bee1ce75a8671cbc319d17854f848324c (diff)
downloadslackbuilds-35521a2da28d8d9de31ef593ec7f4623f404e964.tar.gz
audio/tuneit: Miscellaneous cleanups
Diffstat (limited to 'audio')
-rw-r--r--audio/tuneit/README6
-rw-r--r--audio/tuneit/tuneit.SlackBuild14
2 files changed, 16 insertions, 4 deletions
diff --git a/audio/tuneit/README b/audio/tuneit/README
index 22a3206503..7bac128c9a 100644
--- a/audio/tuneit/README
+++ b/audio/tuneit/README
@@ -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.
diff --git a/audio/tuneit/tuneit.SlackBuild b/audio/tuneit/tuneit.SlackBuild
index db2fdad724..e4a188c0ad 100644
--- a/audio/tuneit/tuneit.SlackBuild
+++ b/audio/tuneit/tuneit.SlackBuild
@@ -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