PKGBUILDs/extra/libmpdclient/PKGBUILD

23 lines
645 B
Bash
Raw Normal View History

2009-10-10 02:23:22 +00:00
# $Id: PKGBUILD 50625 2009-08-30 03:02:23Z allan $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
pkgname=libmpdclient
pkgver=2.0
pkgrel=1
pkgdesc="An asynchronous API library for interfacing MPD in the C, C++ & Objective C languages"
arch=('i686' 'x86_64')
url="http://mpd.wikia.com/wiki/Client:libmpdclient"
license=('GPL2')
depends=('glibc')
options=('!libtool')
source=(http://downloads.sourceforge.net/musicpd/${pkgname}-$pkgver.tar.bz2)
md5sums=('d9605332d4c4a4f28362e4a9c953e84b')
build() {
cd ${srcdir}/$pkgname-$pkgver
./configure --prefix=/usr || return 1
make || return 1
make DESTDIR=${pkgdir} install || return 1
}