mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 21:47:13 +08:00
35 lines
947 B
Bash
35 lines
947 B
Bash
# $Id: PKGBUILD 69566 2010-02-21 05:29:26Z allan $
|
|
# Maintainer:
|
|
# Contributor: Alexander Baldeck <alexander@archlinux.org>
|
|
# Contributor: dorphell <dorphell@archlinux.org>
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
# Contributor: Sarah Hay <sarah@archlinux.org>
|
|
|
|
pkgname=musicbrainz
|
|
pkgver=2.1.5
|
|
pkgrel=3
|
|
pkgdesc="The second generation incarnation of the CD Index"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.musicbrainz.org/index.html"
|
|
license=('LGPL')
|
|
depends=('expat>=2.0')
|
|
makedepends=('python')
|
|
options=('!libtool')
|
|
source=(ftp://ftp.musicbrainz.org/pub/$pkgname/libmusicbrainz-${pkgver}.tar.gz
|
|
'gcc4.3.patch')
|
|
|
|
|
|
build() {
|
|
cd ${srcdir}/lib${pkgname}-${pkgver}
|
|
|
|
patch -p1 -i ${srcdir}/gcc4.3.patch
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
cd python
|
|
python setup.py install --root=${pkgdir} || return 1
|
|
}
|
|
md5sums=('d5e19bb77edd6ea798ce206bd05ccc5f'
|
|
'9455555d03e3bd15d488ffdb2287ffa7')
|