mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
34 lines
852 B
Bash
34 lines
852 B
Bash
source ../kdeapps.conf
|
|
|
|
pkgname=yakuake
|
|
pkgver=3.0.5
|
|
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' 'kwayland' '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=('07acb03db00bcbd70945542179191409')
|
|
|
|
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
|
|
}
|
|
|