blob: 468553751f6d3919037717e1d83971eeefab21f0 (
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
28
29
30
31
32
33
34
35
36
37
38
|
# Maintainer: Julian Daube <joposter at gmail dot com>
# Contributer: Adam Goldsmith <adam at adamgoldsmith dot name>
pkgname=mopidy-youtube-git
_pkgname=mopidy-youtube
pkgver=3.6.r22.g0a069b7
pkgrel=1
pkgdesc="Mopidy extension for playing music from Youtube"
arch=('any')
url="https://github.com/natumbri/mopidy-youtube"
license=('APACHE')
depends=(
'mopidy>=3.1'
'python-pykka>=2.0.1'
'python-setuptools'
'python-requests'
'python-cachetools'
'python-beautifulsoup4'
'youtube-dl>=2021.06.01'
'python-ytmusicapi')
makedepends=('python' 'git')
provides=("$_pkgname=$pkgver")
conflicts=("mopidy-youtube")
source=("$_pkgname::git+$url.git")
pkgver() {
cd "$_pkgname"
git describe --tags --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//;'
}
package() {
cd "$srcdir/$_pkgname"
python setup.py install --root="$pkgdir/" --optimize=1
}
md5sums=('SKIP')
|