2015-02-23 07:23:41 +08:00
|
|
|
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/kwayland
|
2016-05-11 02:32:14 +08:00
|
|
|
source ../frameworks.conf
|
2014-10-23 03:29:25 +08:00
|
|
|
|
|
|
|
pkgname=kwayland
|
2016-05-11 02:32:14 +08:00
|
|
|
pkgver=${KFVersion}
|
2017-04-12 05:22:44 +08:00
|
|
|
pkgrel=1
|
2014-10-23 03:29:25 +08:00
|
|
|
pkgdesc='Qt-style Client and Server library wrapper for the Wayland libraries'
|
|
|
|
arch=('x86_64')
|
|
|
|
url='http://www.kde.org'
|
|
|
|
license=('LGPL')
|
2015-02-23 07:23:41 +08:00
|
|
|
depends=('qt5-base')
|
2016-05-11 02:32:14 +08:00
|
|
|
makedepends=("extra-cmake-modules>=${KFECMVersion}")
|
|
|
|
groups=('kf5')
|
2015-08-17 01:15:23 +08:00
|
|
|
options=("debug")
|
2017-03-05 08:49:08 +08:00
|
|
|
source=("${KFServer}/${pkgname}-${pkgver}.tar.xz"{,.sig})
|
|
|
|
sha256sums=( $(getSum ${pkgname})
|
|
|
|
SKIP)
|
2017-08-10 17:46:06 +08:00
|
|
|
validpgpkeys=( ${KFvalidpgpkeys[@]} )
|
2014-10-23 03:29:25 +08:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
mkdir -p build
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd build
|
2015-02-24 05:41:32 +08:00
|
|
|
cmake_kf5 ../$pkgname-${pkgver}
|
2014-10-23 03:29:25 +08:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd build
|
|
|
|
make DESTDIR="$pkgdir" install
|
2014-12-01 13:27:04 +08:00
|
|
|
}
|