mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
20 lines
754 B
Bash
20 lines
754 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Eric Belanger <belanger@astro.umontreal.ca>
|
|
# Contributor: Augusto Born de Oliveira <augustoborn@gmail.com>
|
|
|
|
pkgname=python-musicbrainz2
|
|
pkgver=0.6.0
|
|
pkgrel=1
|
|
pkgdesc="A client library written in python which provides easy object oriented access to the MusicBrainz database"
|
|
arch=('i686' 'x86_64')
|
|
url="http://wiki.musicbrainz.org/PythonMusicBrainz2"
|
|
license=("BSD")
|
|
depends=('musicbrainz' 'python')
|
|
source=(http://musicbrainz.org/~matt/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('2ab23c3c15885d29ebd01bcc44ccc823')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
python setup.py install --root=$startdir/pkg
|
|
install -D -m644 COPYING.txt $startdir/pkg/usr/share/licenses/$pkgname/COPYING.txt
|
|
}
|