diff options
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 26 |
2 files changed, 15 insertions, 13 deletions
@@ -1,5 +1,5 @@ # Generated by makepkg 4.2.1 -# Mon Jun 1 14:57:57 UTC 2015 +# Mon Jun 1 14:57:58 UTC 2015 pkgbase = beets-git pkgdesc = Flexible music library manager and tagger - git version pkgver = 20130614 @@ -9,31 +9,33 @@ arch=('any') url="http://beets.radbox.org/" license=('MIT') depends=('python2-munkres' 'mutagen' - 'python2-distribute' 'python2-unidecode' - 'python2-musicbrainzngs' 'python2-yaml') + 'python2-distribute' 'python2-unidecode' + 'python2-musicbrainzngs' 'python2-yaml') makedepends=('git') optdepends=('python2-pyacoustid: acoustic fingerprinting' - 'python2-flask: web interface' - 'gstreamer0.10-python: BPD audio player plugin' - 'python2-pylast: lastgenre plugin') + 'python2-flask: web interface' + 'gstreamer0.10-python: BPD audio player plugin' + 'python2-pylast: lastgenre plugin') provides=('beets') conflicts=('beets') source=('git://github.com/sampsyo/beets.git') md5sums=('SKIP') pkgver() { - cd ${srcdir}/beets - echo $(date +%Y%m%d).$(git describe --always | sed 's|-|.|g') + cd ${srcdir}/beets + echo $(date +%Y%m%d).$(git describe --always | sed 's|-|.|g') } build() { - cd ${srcdir}/beets - python2 setup.py build + cd ${srcdir}/beets + python2 setup.py build } package() { - cd ${srcdir}/beets - python2 setup.py install --root=${pkgdir} --optimize=1 + cd ${srcdir}/beets + python2 setup.py install --root=${pkgdir} --optimize=1 - install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } + +# vim: set ts=4 sw=4 noet: |