# $Id: PKGBUILD 174709 2013-01-05 13:30:11Z andrea $ # Maintainer: Andrea Scarpino pkgname=kdemultimedia-kmix pkgver=4.9.5 pkgrel=1 pkgdesc="KDE volume control program" url='http://kde.org/applications/multimedia/kmix/' arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdemultimedia') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install="${pkgname}.install" source=("http://download.kde.org/stable/${pkgver}/src/kmix-${pkgver}.tar.xz") sha1sums=('707f4dc77ceded7c99d98d35f4ca73bad594f2be') build() { cd "${srcdir}" mkdir build cd build cmake ../kmix-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr make } package() { cd "${srcdir}"/build make DESTDIR="${pkgdir}" install }