diff options
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 26 |
1 files changed, 14 insertions, 12 deletions
@@ -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: |