blob: de332683f66434c065583e03f0b69d0a5f73dd97 (
plain)
1 # Description: MPD Client Library for Python.
2 # URL: http://www.musicpd.org/
3 # Maintainer: James Mills, prologic at shortcircuit dot net dot au
4 # Packager: James Mills, prologic at shortcircuit dot net dot au
5 #
6 # Depends on: python
7
8 name=mpdclient
9 version=0.10.0
10 release=2
11 source=(http://mercury.chem.pitt.edu/~shank/py-lib$name-$version.tar.gz)
12
13 build() {
14 cd py-lib$name-$version
15 python ./setup.py install --root=$PKG
16 chown -R root:root $PKG
17 }
|