diff options
Diffstat (limited to 'extra/libmpd/PKGBUILD')
-rw-r--r-- | extra/libmpd/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/extra/libmpd/PKGBUILD b/extra/libmpd/PKGBUILD new file mode 100644 index 000000000..1c59617e4 --- /dev/null +++ b/extra/libmpd/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 80681 2010-05-20 18:05:26Z ibiru $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# Contributor: tobias <tobias@archlinux.org> + +pkgname=libmpd +pkgver=0.20.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=('2f1c99e12c69f7d95cfd1e27368056ed') + +build() { + cd ${srcdir}/$pkgname-$pkgver + ./configure --prefix=/usr + make || return 1 + make DESTDIR=${pkgdir} install +} |