diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/libmpd |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/libmpd')
-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 +} |