# $Id: PKGBUILD 171836 2012-11-21 19:51:52Z andrea $ # Maintainer: Andrea Scarpino pkgname=kdemultimedia-kmix pkgver=4.9.80 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/unstable/${pkgver}/src/kmix-${pkgver}.tar.xz") sha1sums=('60c5d851ece3fd62db2604d2fcde05639ac49c83') 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 }