mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 16:57:15 +08:00
34 lines
863 B
Bash
34 lines
863 B
Bash
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/kwidgetsaddons
|
|
source ../frameworks.conf
|
|
|
|
pkgname=kwidgetsaddons
|
|
pkgver=${KFVersion}
|
|
pkgrel=1
|
|
pkgdesc='Higher level user interface elements for common tasks'
|
|
arch=('x86_64')
|
|
url='https://projects.kde.org/projects/frameworks/kwidgetsaddons'
|
|
license=('LGPL')
|
|
depends=("qt5-base")
|
|
makedepends=("extra-cmake-modules>=${KFECMVersion}" 'qt5-tools' 'clang' 'python2-pyqt5' 'python3-pyqt5' 'doxygen')
|
|
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 -DBUILD_QCH=ON ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|