blob: 2b442f94e2a72a4173fb660ef3ce484a27a53aef (
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: goetzc
# Maintainer: James P. Harvey <jamespharvey20 at gmail dot com>
# Maintainer: Vyacheslav Konovalov <🦀vk@protonmail.com>
pkgname=python-spotipy
pkgver=2.24.0
pkgrel=1
pkgdesc='A light weight Python library for the Spotify Web API'
arch=('any')
url='https://github.com/spotipy-dev/spotipy'
license=('MIT')
depends=('python-requests' 'python-six' 'python-redis')
makedepends=('python-setuptools')
conflicts=("$pkgname-git")
source=("$pkgname-$pkgver.tar.gz::https://github.com/spotipy-dev/spotipy/archive/$pkgver.tar.gz")
sha256sums=('f3dfd2f891f76923847f052c65ec689cd7482ab1e3200aebeffa39661c51d137')
build() {
cd "spotipy-$pkgver"
python setup.py build
}
package() {
cd "spotipy-$pkgver"
python setup.py install --root="$pkgdir" --skip-build --optimize=1
install -Dm644 LICENSE.md -t "$pkgdir/usr/share/licenses/$pkgname"
}
|