aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2013-10-19 02:15:56 +0200
committerJohannes Löthberg <johannes@kyriasis.com>2015-06-01 16:03:37 +0200
commitd8fb524420d9c8230f5b1f70c3c921d04ae48ce7 (patch)
treec7e246283fced29bfd6152ec7dc45b6482013716
parentc83702f872bbada876189916b03702dc3073248d (diff)
downloadpkgbuilds-d8fb524420d9c8230f5b1f70c3c921d04ae48ce7.tar.xz
Reindent with tabs, minor style changes
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD26
2 files changed, 15 insertions, 13 deletions
diff --git a/.SRCINFO b/.SRCINFO
index bc58cd9..a27b366 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -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
diff --git a/PKGBUILD b/PKGBUILD
index 75e2c7f..3739976 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -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: