desktop/kmix/PKGBUILD
2017-12-28 22:32:19 +00:00

35 lines
774 B
Bash

# Include global configuration
source ../kdeapps.conf
pkgname=kmix
pkgver=${_kdever}
pkgrel=1
pkgdesc="KDE volume control program"
url='https://kde.org/applications/multimedia/kmix/'
arch=(x86_64)
license=(GPL LGPL FDL)
depends=(kinit libcanberra hicolor-icon-theme)
makedepends=(extra-cmake-modules kdoctools plasma-framework)
conflicts=(kdemultimedia-kmix)
replaces=(kdemultimedia-kmix)
options=('docs' 'debug')
source=("$_mirror/${pkgname}-$_kdever.tar.xz"{,.sig})
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../kdeapps.sums | cut -d " " -f1`
'SKIP')
validpgpkeys=(${Avalidpgpkeys[@]})
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver}
make
}
package() {
cd build
make DESTDIR=${pkgdir} install
}