diff --git a/.SRCINFO b/.SRCINFO index 52f5bc5..51e235b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -6,19 +6,18 @@ pkgbase = beets-git arch = any license = MIT makedepends = git - depends = python2-munkres - depends = mutagen - depends = python2-setuptools - depends = python2-unidecode - depends = python2-musicbrainzngs - depends = python2-yaml - depends = python2-enum34 - depends = python2-jellyfish - depends = python2-six - optdepends = python2-pyacoustid: acoustic fingerprinting - optdepends = python2-flask: web interface - optdepends = python2-gobject: BPD audio player plugin - optdepends = python2-pylast: lastgenre plugin + depends = python-munkres + depends = python-mutagen + depends = python-setuptools + depends = python-unidecode + depends = python-musicbrainzngs + depends = python-yaml + depends = python-jellyfish + depends = python-six + optdepends = python-pyacoustid: acoustic fingerprinting + optdepends = python-flask: web interface + optdepends = python-gobject: BPD audio player plugin + optdepends = python-pylast: lastgenre plugin provides = beets conflicts = beets source = git+https://github.com/beetbox/beets.git diff --git a/PKGBUILD b/PKGBUILD index c9aaa12..bd020e8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -8,16 +8,15 @@ 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' - 'python2-six') +depends=('python-munkres' 'python-mutagen' + 'python-setuptools' 'python-unidecode' + 'python-musicbrainzngs' 'python-yaml' + 'python-jellyfish' 'python-six') makedepends=('git') -optdepends=('python2-pyacoustid: acoustic fingerprinting' - 'python2-flask: web interface' - 'python2-gobject: BPD audio player plugin' - 'python2-pylast: lastgenre plugin') +optdepends=('python-pyacoustid: acoustic fingerprinting' + 'python-flask: web interface' + 'python-gobject: BPD audio player plugin' + 'python-pylast: lastgenre plugin') provides=('beets') conflicts=('beets') source=('git+https://github.com/beetbox/beets.git') @@ -30,12 +29,12 @@ pkgver() { build() { cd ${srcdir}/beets - python2 setup.py build + python setup.py build } package() { cd ${srcdir}/beets - python2 setup.py install --root=${pkgdir} --optimize=1 + python setup.py install --root=${pkgdir} --optimize=1 install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" }