From 4074bf1e687ea1035b4714b13b6e0180ee21ae26 Mon Sep 17 00:00:00 2001 From: Robby Workman Date: Wed, 19 May 2010 14:18:58 -0500 Subject: audio/clementine: Miscellaneous cleanups. --- audio/clementine/README | 8 -------- audio/clementine/clementine.SlackBuild | 14 +++++++++++++- 2 files changed, 13 insertions(+), 9 deletions(-) (limited to 'audio/clementine') 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 -- cgit v1.2.3