mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
audio/tuneit: Miscellaneous cleanups
This commit is contained in:
parent
ae8afb4bee
commit
35521a2da2
2 changed files with 16 additions and 4 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue