desktop/yakuake/PKGBUILD
2016-03-03 21:29:55 +01:00

34 lines
841 B
Bash

source ../kdeapps.conf
pkgname=yakuake
pkgver=3.0.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=('karchive' 'kconfig' 'kcoreaddons' 'kdbusaddons' 'kglobalaccel' 'ki18n' 'kiconthemes' 'kio'
'knewstuff' 'knotifications' 'knotifyconfig' 'kparts' 'kwidgetsaddons' 'kwindowsystem')
makedepends=('extra-cmake-modules')
conflicts=('yakuake-kf5')
replaces=('yakuake-kf5')
source=("http://download.kde.org/stable/yakuake/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
md5sums=('6c5eaea40770283078dad6fa288615c5')
build() {
mkdir -p build && cd build
cmake_kf5 ../${pkgname}-${pkgver}
make
}
check() {
cd build
make test || return 0
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}