libraries/libmusicbrainz3: Miscellaneous cleanups.

This commit is contained in:
Robby Workman 2010-05-19 22:04:17 -05:00
parent cbf7c09d1b
commit 2de1d14281
2 changed files with 14 additions and 2 deletions

View file

@ -2,7 +2,7 @@ The libmusicbrainz (also known as mb_client or MusicBrainz Client Library)
is a development library geared towards developers who wish to add
MusicBrainz lookup capabilities to their applications.
This requires libdiscid, and cppunit is an optional build-time dep.
cppunit is an optional build-time dependency.
Note: This is a new library for libmusicbrainz, which is not backwards
compatible with previous versions. It is safe to have version 2.X and

View file

@ -6,12 +6,21 @@
PRGNAM=libmusicbrainz3
VERSION=${VERSION:-3.0.2}
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
SRCNAM=libmusicbrainz
# 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
@ -26,6 +35,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
fi
set -e