Skip to content

Instantly share code, notes, and snippets.

@tonyfinn
Created December 29, 2019 23:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tonyfinn/830b0ae053bf83c1e4720dc750d6485c to your computer and use it in GitHub Desktop.
Save tonyfinn/830b0ae053bf83c1e4720dc750d6485c to your computer and use it in GitHub Desktop.
mopidy-podcast-itunes PKGBUILD
# Maintainer: Tony Finn <aur at tonyfinn dot com>
# Contributor: scsnow54@gmail.co
pkgname=mopidy-podcast-itunes
_pypiname=Mopidy-Podcast-iTunes
pkgver=3.0.0
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=('d6fc73c113eb462b2f81b816a8695b0b')
package() {
cd "$srcdir/$_pypiname-$pkgver"
python3 setup.py install --root="$pkgdir/" --optimize=1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment