diff options
Diffstat (limited to 'community/kid3/PKGBUILD')
-rw-r--r-- | community/kid3/PKGBUILD | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/community/kid3/PKGBUILD b/community/kid3/PKGBUILD new file mode 100644 index 000000000..d6f1c6a28 --- /dev/null +++ b/community/kid3/PKGBUILD @@ -0,0 +1,45 @@ +# $Id: PKGBUILD 94888 2013-08-01 06:55:03Z bpiotrowski $ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: Alois Nespor <alois.nespor@gmail.com> + +pkgname=kid3 +pkgver=2.3 +pkgrel=2 +pkgdesc="An MP3, Ogg/Vorbis and FLAC tag editor for KDE" +arch=('i686' 'x86_64') +url="http://kid3.sourceforge.net/" +license=('GPL') +depends=('chromaprint' 'id3lib' 'taglib' 'kdebase-runtime') +makedepends=('automoc4' 'cmake' 'docbook-xml' 'docbook-xsl') +options=('!makeflags') +install=$pkgname.install +changelog=$pkgname.changelog +source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz) +sha256sums=('8426b40b065f5a968796d1ff92da8d7a96d67cd963df837ce30ff1cf795ae301') + +prepare() { + cd ${pkgname}-${pkgver} + sed -i 's/AVCODEC_MAX_AUDIO_FRAME_SIZE/192000/' src/core/import/ffmpegfingerprintdecoder.cpp +} + +build() { + cd ${pkgname}-${pkgver} + + cd ${srcdir} + + mkdir build + cd build + + cmake \ + ../${pkgname}-${pkgver} \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release + + make +} + +package() { + cd build + + make DESTDIR=${pkgdir} install +} |