PKGBUILDs/extra/libmpd/PKGBUILD

23 lines
630 B
Bash
Raw Normal View History

2009-10-10 02:23:22 +00:00
# $Id: PKGBUILD 52508 2009-09-21 08:44:12Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: tobias <tobias@archlinux.org>
pkgname=libmpd
pkgver=0.19.0
pkgrel=1
pkgdesc="Signal based wrapper around libmpdclient"
arch=(i686 x86_64)
license=('GPL')
url="http://gmpc.wikia.com/wiki/Gnome_Music_Player_Client"
depends=('glib2')
options=('!libtool')
source=(http://download.sarine.nl/Programs/gmpc/${pkgver}/${pkgname}-${pkgver}.tar.gz)
md5sums=('a994f5f25a22c778926a3684c3e3050d')
build() {
cd ${srcdir}/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR=${pkgdir} install
}