diff options
Diffstat (limited to 'community/kid3/PKGBUILD')
-rw-r--r-- | community/kid3/PKGBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/community/kid3/PKGBUILD b/community/kid3/PKGBUILD new file mode 100644 index 000000000..7b03c3c8a --- /dev/null +++ b/community/kid3/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 40017 2011-02-19 14:10:28Z jlichtblau $ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: Alois Nespor <alois.nespor@gmail.com> + +pkgname=kid3 +pkgver=1.6 +pkgrel=1 +pkgdesc="An MP3, Ogg/Vorbis and FLAC tag editor for KDE" +arch=('i686' 'x86_64') +url="http://kid3.sourceforge.net/" +license=('GPL') +depends=('id3lib' 'kdelibs' 'tunepimp') +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=('974208d5545a9a2bb192dc1a3cfaa64f2269d4f7001d150255ce3f3a3f6723c2') + +build() { + cd ${srcdir} + + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release + make +} + +package() { + cd ${srcdir}/build + make DESTDIR=${pkgdir} install +} |