desktop/yakuake-kf5/PKGBUILD
2015-03-02 00:16:48 +01:00

38 lines
636 B
Bash

source ../plasma.conf
pkgname=yakuake-kf5
_pkgname=yakuake
pkgver=2.9.9.2
pkgrel=1
pkgdesc="A KDE konsole application with the look and feel of that in the Quake engine, kf5 version"
arch=('x86_64')
url="http://yakuake.kde.org"
license=('GPL')
depends=('konsole' 'knewstuff')
makedepends=('extra-cmake-modules' 'git')
conflicts=('yakuake')
groups=('system')
source=("git://anongit.kde.org/yakuake#branch=frameworks")
md5sums=('SKIP')
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../${_pkgname}
make
}
check() {
cd build
make test || return 0
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}