mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
17 lines
507 B
Bash
17 lines
507 B
Bash
# Contributor: Tom Shaft Jr. <d6@demetrius6.org>
|
|
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
|
|
pkgname=python-daap
|
|
pkgver=0.7.1
|
|
pkgrel=2
|
|
pkgdesc="Python libraries for accessing DAAP music shares"
|
|
arch=('i686' 'x86_64')
|
|
url="http://jerakeen.org/code/pythondaap/"
|
|
depends=('python')
|
|
license=('GPL')
|
|
source=(http://jerakeen.org/files/PythonDaap-$pkgver.tar.gz)
|
|
md5sums=('b3db3d60b0ee83f5f23101d2c3bb99e0')
|
|
|
|
build() {
|
|
cd $srcdir/PythonDaap-$pkgver
|
|
python setup.py install --prefix=$pkgdir/usr
|
|
}
|