desktop/yakuake/PKGBUILD

34 lines
852 B
Bash
Raw Normal View History

2016-03-04 04:29:55 +08:00
source ../kdeapps.conf
2010-05-31 00:30:09 +08:00
pkgname=yakuake
2017-04-05 12:40:52 +08:00
pkgver=3.0.4
2016-03-04 04:29:55 +08:00
pkgrel=1
pkgdesc="A KDE konsole application with the look and feel of that in the Quake engine, kf5 version"
arch=('x86_64')
2010-05-31 00:30:09 +08:00
url="http://yakuake.kde.org"
license=('GPL')
2016-03-04 04:29:55 +08:00
depends=('karchive' 'kconfig' 'kcoreaddons' 'kdbusaddons' 'kglobalaccel' 'ki18n' 'kiconthemes' 'kio'
2017-03-31 19:45:25 +08:00
'knewstuff' 'knotifications' 'knotifyconfig' 'kparts' 'kwayland' 'kwidgetsaddons' 'kwindowsystem')
2016-03-04 04:29:55 +08:00
makedepends=('extra-cmake-modules')
conflicts=('yakuake-kf5')
replaces=('yakuake-kf5')
source=("http://download.kde.org/stable/yakuake/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
2017-04-05 12:40:52 +08:00
md5sums=('f8f43f2f3d99925d8853879ff1eb5826')
2010-05-31 00:30:09 +08:00
build() {
2016-03-04 04:29:55 +08:00
mkdir -p build && cd build
cmake_kf5 ../${pkgname}-${pkgver}
2010-05-31 00:30:09 +08:00
make
}
2016-03-04 04:29:55 +08:00
check() {
cd build
make test || return 0
}
package() {
2016-03-04 04:29:55 +08:00
cd build
make DESTDIR="${pkgdir}" install
2010-05-31 00:30:09 +08:00
}
2016-03-04 04:29:55 +08:00