mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-16 04:35:13 +03:00
29 lines
770 B
Text
29 lines
770 B
Text
# Maintainer: Willow Barraco <contact@willowbarraco.fr>
|
|
pkgname=py3-tidalapi
|
|
_pkgname=tidalapi
|
|
pkgver=0.7.0
|
|
pkgrel=2
|
|
pkgdesc="Unofficial Python API for TIDAL music streaming service"
|
|
url="https://pypi.org/project/tidalapi/"
|
|
arch="noarch"
|
|
license="LGPL-3.0-or-later"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py check
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
ce5b461b29e5fb220014f37d0def73877445cb5c2096d31382b5cfaf3e50e5d4588ae4ac30b907df2153b94ee1afa7b3b2d7607d01472f1e9cf3f3ce558705dd tidalapi-0.7.0.tar.gz
|
|
"
|