core/kwayland/PKGBUILD

34 lines
745 B
Bash
Raw Normal View History

# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/kwayland
source ../frameworks.conf
2014-10-23 03:29:25 +08:00
pkgname=kwayland
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')
depends=('qt5-base')
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)
validpgpkeys=( ${KFvalidpgpkeys[@]} )
2014-10-23 03:29:25 +08:00
prepare() {
mkdir -p build
}
build() {
cd build
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
}