diff options
Diffstat (limited to 'community/python-daap/PKGBUILD')
-rw-r--r-- | community/python-daap/PKGBUILD | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/community/python-daap/PKGBUILD b/community/python-daap/PKGBUILD new file mode 100644 index 000000000..d48f8da4d --- /dev/null +++ b/community/python-daap/PKGBUILD @@ -0,0 +1,17 @@ +# Contributor: Tom Shaft Jr. <d6@demetrius6.org> +# Maintainer: Stefan Husmann <stefan-husmann@t-online.de> +pkgname=python-daap +pkgver=0.7.1 +pkgrel=3 +pkgdesc="Python libraries for accessing DAAP music shares" +arch=('i686' 'x86_64') +url="http://jerakeen.org/code/pythondaap/" +depends=('python2') +license=('GPL') +source=(http://jerakeen.org/files/PythonDaap-$pkgver.tar.gz) +md5sums=('b3db3d60b0ee83f5f23101d2c3bb99e0') + +build() { + cd $srcdir/PythonDaap-$pkgver + python2 setup.py install --prefix=$pkgdir/usr +} |