mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 13:24:37 +08:00
34 lines
667 B
Bash
34 lines
667 B
Bash
|
# Include global configuration
|
||
|
source ../frameworks.conf
|
||
|
|
||
|
pkgname=kholidays
|
||
|
pkgver=${KFVersion}
|
||
|
pkgrel=2
|
||
|
epoch=1
|
||
|
pkgdesc="KDE library for regional holiday information"
|
||
|
arch=('x86_64')
|
||
|
url='https://community.kde.org/Frameworks'
|
||
|
license=(LGPL)
|
||
|
depends=(qt5-base)
|
||
|
makedepends=(extra-cmake-modules qt5-declarative qt5-tools doxygen)
|
||
|
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
|
||
|
}
|