mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
38 lines
636 B
Bash
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
|
|
}
|
|
|