mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
19 lines
603 B
Bash
19 lines
603 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Jeff Mickey <jeff@archlinux.org>
|
|
# Maintainer: William Rea <sillywilly@gmail.com>
|
|
pkgname=python-mpdclient2
|
|
pkgver=0.11.1
|
|
pkgrel=4
|
|
pkgdesc="Python module for interfacing MPD"
|
|
arch=(i686 x86_64)
|
|
url="http://www.musicpd.org/py-libmpdclient.shtml"
|
|
license=('LGPL')
|
|
depends=('python')
|
|
makedepends=('pkgconfig')
|
|
source=('http://www.ghost1227.com/files/py-libmpdclient-0.11.1.tar.bz2')
|
|
md5sums=('854d2ed1ca620305dd27c5a3f244f913')
|
|
|
|
build() {
|
|
cd $startdir/src/py-libmpdclient-$pkgver
|
|
python setup.py install --root=$startdir/pkg || return 1
|
|
}
|