mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
libraries/python-musicbrainz2: Miscellaneous cleanups.
This commit is contained in:
parent
2de1d14281
commit
aafcd60576
2 changed files with 10 additions and 3 deletions
|
@ -4,7 +4,5 @@ This python package contains various modules for accessing the MusicBrainz
|
|||
web service, as well as parsing the MusicBrainz Metadata XML (MMD), or
|
||||
calculating DiscIDs from Audio CDs.
|
||||
|
||||
Python-musicbrainz2 requires libdiscid.
|
||||
|
||||
If you'd like to generate and install the python-musicbrainz2 API documents,
|
||||
then install epydoc and pass "MAKE_DOCS=yes" to the SlackBuild script.
|
||||
|
|
|
@ -6,10 +6,19 @@
|
|||
|
||||
PRGNAM=python-musicbrainz2
|
||||
VERSION=${VERSION:-0.7.0}
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue