desktop/yakuake-kf5/PKGBUILD

36 lines
664 B
Bash
Raw Normal View History

2015-03-02 07:16:48 +08:00
source ../plasma.conf
pkgname=yakuake-kf5
_pkgname=yakuake
2015-03-02 07:16:48 +08:00
pkgver=2.9.9.2
pkgrel=2
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')
provides=('yakuake')
conflicts=('yakuake')
replaces=('yakuake')
groups=('system')
source=("git://anongit.kde.org/yakuake#branch=frameworks")
md5sums=('SKIP')
build() {
mkdir -p build && cd build
2015-03-02 07:16:48 +08:00
cmake_kf5 ../${_pkgname}
make
}
check() {
cd build
make test || return 0
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}