mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
630 B
Bash
22 lines
630 B
Bash
# $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
|
|
}
|