mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
30 lines
863 B
Bash
30 lines
863 B
Bash
# Maintainer: Ram-Z <ram-z[at]chakraos[dot]org>
|
|
# Contributor: Christian Menard <ReaperMan333@gmx.net>
|
|
# Contributor: Ernesto Manríquez <alejandronova@gmail.com>
|
|
|
|
pkgname=picard
|
|
pkgver=1.4.2
|
|
pkgrel=1
|
|
pkgdesc="MusicBrainz tagging application"
|
|
arch=('x86_64')
|
|
url="http://musicbrainz.org"
|
|
license=('GPL')
|
|
depends=('python2' 'python2-pyqt4' 'mutagen' 'libofa' 'ffmpeg' )
|
|
optdepends=('python2-discid: CD-Lookup feature'
|
|
'chromaprint: fingerprinting')
|
|
makedepends=('python2-discid')
|
|
source=("http://ftp.musicbrainz.org/pub/musicbrainz/$pkgname/$pkgname-$pkgver.tar.gz")
|
|
replaces=('picard-plugins')
|
|
md5sums=('f39b57aa2e5e71d09e1f664be8b21971')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-release-$pkgver"
|
|
python2 setup.py config
|
|
python2 setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-release-$pkgver"
|
|
python2 setup.py install --root=$pkgdir
|
|
}
|