mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:47:13 +08:00
0003c19031
use [@] to get the full array entries, without that only the first element was retrieved
35 lines
824 B
Bash
35 lines
824 B
Bash
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/kwindowsystem
|
|
source ../frameworks.conf
|
|
|
|
pkgname=kwindowsystem
|
|
pkgver=${KFVersion}
|
|
pkgrel=1
|
|
pkgdesc='KWindowSystem'
|
|
arch=('x86_64')
|
|
url='https://projects.kde.org/projects/frameworks/kwindowsystem'
|
|
license=('LGPL')
|
|
depends=("qt5-x11extras" 'libxfixes')
|
|
makedepends=("extra-cmake-modules>=${KFECMVersion}" 'qt5-tools')
|
|
checkdepends=('cmake' 'xorg-server-xvfb' 'openbox')
|
|
groups=('kf5')
|
|
options=('debug')
|
|
source=("${KFServer}/${pkgname}-${pkgver}.tar.xz"{,.sig})
|
|
sha256sums=( $(getSum ${pkgname})
|
|
SKIP)
|
|
validpgpkeys=( ${KFvalidpgpkeys[@]} )
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|