mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-23 01:21:46 +01:00
25 lines
840 B
Plaintext
25 lines
840 B
Plaintext
# Contributor: Łukasz Jendrysik <scadu@yandex.com>
|
|
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=beets
|
|
pkgver=1.4.8
|
|
pkgrel=0
|
|
pkgdesc="Music library manager and MusicBrainz tagger"
|
|
options="!check" # Requires unpackaged dependencies
|
|
url="http://beets.io"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3 py-mutagen py3-unidecode py3-musicbrainzngs py3-munkres
|
|
py3-setuptools py3-yaml py3-jellyfish py3-six"
|
|
source="https://github.com/sampsyo/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="449bed88185a5ecb4781719e092c2428ddc52fb8084033db64a4c0eca8899154192e7cea82517993d60326c7fe39b26429584ba368ffc35800f722d8d6a03217 beets-1.4.8.tar.gz"
|