mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
37 lines
1.0 KiB
Bash
37 lines
1.0 KiB
Bash
# Include global configuration
|
|
source ../kdeapps.conf
|
|
|
|
pkgname=kdepim-runtime
|
|
pkgver=${_kdever}
|
|
pkgrel=3
|
|
pkgdesc='Extends the functionality of kdepim'
|
|
arch=('x86_64')
|
|
url='https://projects.kde.org/projects/kde/kdepim-runtime'
|
|
license=('GPL' 'LGPL' 'FDL')
|
|
depends=(hicolor-icon-theme libkgapi libkolab akonadi-socialutils akonadi-calendar
|
|
knotifyconfig kross kalarmcal kmbox kimap qt5-speech syndication)
|
|
makedepends=(extra-cmake-modules kdoctools boost)
|
|
install=$pkgname.install
|
|
options=('debug')
|
|
provides=('kio-pim') # the libkdepim pkg was splitted during the 16.08 release
|
|
replaces=('kio-pim') # kio is now part of multiple packages (kmailtransport, kldap, kdepim-runtime)
|
|
conflicts=('kio-pim') # can be removed when 16.12 is released
|
|
|
|
source=("$_mirror/${pkgname}-$_kdever.tar.xz")
|
|
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR=${pkgdir} install
|
|
}
|