summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2010-05-19 14:18:58 -0500
committer Robby Workman <rworkman@slackbuilds.org>2010-05-21 01:26:32 -0500
commit4074bf1e687ea1035b4714b13b6e0180ee21ae26 (patch)
tree85af6762598929779d5ff58c6b028d69a0bc9df3 /audio
parent63080fd249c0d459a87976328f1c01651d1a5425 (diff)
downloadslackbuilds-4074bf1e687ea1035b4714b13b6e0180ee21ae26.tar.gz
slackbuilds-4074bf1e687ea1035b4714b13b6e0180ee21ae26.tar.xz
audio/clementine: Miscellaneous cleanups.
Diffstat (limited to 'audio')
-rw-r--r--audio/clementine/README8
-rwxr-xr-xaudio/clementine/clementine.SlackBuild14
2 files changed, 13 insertions, 9 deletions
diff --git a/audio/clementine/README b/audio/clementine/README
index 1bca87e6ef..1495e128a3 100644
--- a/audio/clementine/README
+++ b/audio/clementine/README
@@ -2,16 +2,8 @@ Clementine is a modern music player and library organiser. Clementine is a
port of Amarok 1.4, with some features rewritten to take advantage of Qt4.
Features:
-
* Search and play your local music library
* Listen to internet radio from Last.fm and SomaFM
* Edit tags on MP3 and OGG files, organise your music
* Cross-platform - works on Windows, Mac OS X and Linux
* Native desktop notifications on Linux (libnotify) and Mac OS X (Growl)
-
-Dependencies:
-
-liblastfm
-libnotify
-
-Both on slackbuilds.org
diff --git a/audio/clementine/clementine.SlackBuild b/audio/clementine/clementine.SlackBuild
index 92e1e7d287..7d2898580b 100755
--- a/audio/clementine/clementine.SlackBuild
+++ b/audio/clementine/clementine.SlackBuild
@@ -26,10 +26,19 @@
PRGNAM=clementine
VERSION=${VERSION:-0.1}
-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
@@ -44,6 +53,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e