blob: ad16fdb870b8015741c1fe3e8291360cd781a7e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Maintainer: Tony Finn <aur at tonyfinn dot com>
# Contributor: scsnow54@gmail.co
pkgname=mopidy-podcast-itunes
_pypiname=Mopidy-Podcast-iTunes
pkgver=3.0.1
pkgrel=1
pkgdesc="Mopidy-Podcast extension for searching and browsing podcasts on the iTunes Store"
arch=('any')
url="https://github.com/tkem/mopidy-podcast-itunes"
license=('APACHE')
depends=(
'python-setuptools'
'python>=3.0'
'mopidy>=3.0'
'mopidy-podcast>=3.0'
'python-pykka>=2.0.1'
'python-requests>=2.0'
)
makedepends=('python' 'git')
source=("https://pypi.python.org/packages/source/M/${_pypiname}/${_pypiname}-${pkgver}.tar.gz")
md5sums=('935e46124993b51bd148de6f52620d5c')
package() {
cd "$srcdir/$_pypiname-$pkgver"
python3 setup.py install --root="$pkgdir/" --optimize=1
}
|