summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 235f27b467f009eadafdff67d0673bf43561b2e6 (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
# Maintainer: Vyacheslav Konovalov <vyachkonovalov@protonmail.com>

_commit=e478e5b031238fb1a30e6267f5af7b94f0a397ef
pkgname=deemix
pkgver=1.0.26
pkgrel=1
pkgdesc='A barebone deezer downloader library'
arch=(any)
url='https://deemix.app/'
license=('GPL3')
depends=('python>=3.6' 'python-click' 'python-pycryptodomex' 'python-mutagen' 'python-spotipy')
makedepends=('python-setuptools')
conflicts=('deemix-git')
source=("https://notabug.org/RemixDev/deemix/archive/$_commit.tar.gz")
sha256sums=('9828ff86ebc3e3c27785d12718bb2e988e34291db4e7091e636c42322a69ee6b')

build() {
  cd deemix
  python setup.py build
}

package() {
  cd deemix
  python setup.py install --root="$pkgdir" --optimize=1
}