blob: facb8f9765ebc6c7dda4d0cbc7608a75e91754a9 (
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
|
# Maintainer: Martin Rys <https://rys.rs/contact> | Toss a coin on https://rys.rs/donate
# Previous maintainer: Simon Tas <simon.tas.st@gmail.com>
pkgname="deemix-git"
_pkgname="deemix-py"
pkgver=r675.5f978acec7
pkgrel=2
pkgdesc="a deezer downloader built from the ashes of Deezloader Remix."
arch=('any')
url="https://gitlab.com/RemixDev/${_pkgname}"
license=('GPL-3.0-or-later')
depends=('python' 'python-click' 'python-pycryptodomex' 'python-mutagen' 'python-requests' 'python-spotipy' 'python-eventlet' 'python-deezer-py')
conflicts=('deemix')
makedepends=('git' 'python-setuptools' 'python-build' 'python-installer')
provides=('deemix')
source=("${_pkgname}::git+https://gitlab.com/RemixDev/${_pkgname}")
md5sums=('SKIP')
pkgver() {
cd "${_pkgname}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=10 HEAD)"
}
build() {
cd "${srcdir}/${_pkgname}"
python -m build
}
package() {
cd "${srcdir}/${_pkgname}"
python -m installer --destdir="${pkgdir}" dist/*.whl
}
|