beets-git/PKGBUILD
Adrian Sampson 17d2f53670 Update optional dependency for GStreamer
The new versions use GStreamer 1.0, which in turn uses the `gi` version of
Python-GObject, which is called `python2-gobject` on Arch.
2016-07-27 10:41:02 -07:00

41 lines
1.1 KiB
Bash

# Maintainer: Adrian Sampson <adrian@radbox.org>
# Contributor: Johannes Löthberg <demizide@gmail.com>
pkgname=beets-git
pkgver=1.3.11.r31.ga0ff517
pkgrel=1
pkgdesc="Flexible music library manager and tagger - git version"
arch=('any')
url="http://beets.io/"
license=('MIT')
depends=('python2-munkres' 'mutagen'
'python2-setuptools' 'python2-unidecode'
'python2-musicbrainzngs' 'python2-yaml'
'python2-enum34' 'python2-jellyfish')
makedepends=('git')
optdepends=('python2-pyacoustid: acoustic fingerprinting'
'python2-flask: web interface'
'python2-gobject: BPD audio player plugin'
'python2-pylast: lastgenre plugin')
provides=('beets')
conflicts=('beets')
source=('git://github.com/beetbox/beets.git')
md5sums=('SKIP')
pkgver() {
cd ${srcdir}/beets
git describe --long --tags | sed -r 's/^v//;s/([^-]*-g)/r\1/;s/-/./g'
}
build() {
cd ${srcdir}/beets
python2 setup.py build
}
package() {
cd ${srcdir}/beets
python2 setup.py install --root=${pkgdir} --optimize=1
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}