core/kwayland/PKGBUILD
AlmAck 9fd6ce1ba5 frameworks 5.22
pending: kwallet, unable to open wallets anymore with blowfish encription
2016-05-10 19:32:14 +01:00

32 lines
672 B
Bash

# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/kwayland
source ../frameworks.conf
pkgname=kwayland
pkgver=${KFVersion}
pkgrel=1
pkgdesc='Qt-style Client and Server library wrapper for the Wayland libraries'
arch=('x86_64')
url='http://www.kde.org'
license=('LGPL')
depends=('qt5-base')
makedepends=("extra-cmake-modules>=${KFECMVersion}")
groups=('kf5')
options=("debug")
source=("${KFServer}/${pkgname}-${pkgver}.tar.xz")
sha256sums=( $(getSum ${pkgname}) )
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../$pkgname-${pkgver}
make
}
package() {
cd build
make DESTDIR="$pkgdir" install
}