2013-12-18 02:36:04 +08:00
|
|
|
# Include global configuration
|
2015-04-10 05:07:08 +08:00
|
|
|
source ../kdeapps.conf
|
2010-05-22 06:25:44 +08:00
|
|
|
|
2015-04-10 05:07:08 +08:00
|
|
|
pkgname=kdepim-runtime
|
2015-08-11 05:26:57 +08:00
|
|
|
pkgver=${_kdever}
|
2016-09-18 20:44:40 +08:00
|
|
|
pkgrel=3
|
2015-08-11 05:26:57 +08:00
|
|
|
pkgdesc='Extends the functionality of kdepim'
|
|
|
|
arch=('x86_64')
|
2013-12-21 00:06:41 +08:00
|
|
|
url='https://projects.kde.org/projects/kde/kdepim-runtime'
|
2015-04-10 05:07:08 +08:00
|
|
|
license=('GPL' 'LGPL' 'FDL')
|
2015-12-06 21:33:31 +08:00
|
|
|
depends=(hicolor-icon-theme libkgapi libkolab akonadi-socialutils akonadi-calendar
|
2016-09-18 20:44:40 +08:00
|
|
|
knotifyconfig kross kalarmcal kmbox kimap qt5-speech syndication)
|
2015-08-11 05:26:57 +08:00
|
|
|
makedepends=(extra-cmake-modules kdoctools boost)
|
|
|
|
install=$pkgname.install
|
|
|
|
options=('debug')
|
2016-08-05 22:22:55 +08:00
|
|
|
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)
|
2016-08-13 23:51:19 +08:00
|
|
|
conflicts=('kio-pim') # can be removed when 16.12 is released
|
2016-08-05 22:22:55 +08:00
|
|
|
|
2015-08-11 05:26:57 +08:00
|
|
|
source=("$_mirror/${pkgname}-$_kdever.tar.xz")
|
|
|
|
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
|
2010-05-22 06:25:44 +08:00
|
|
|
|
2013-12-21 00:06:41 +08:00
|
|
|
prepare() {
|
2015-08-11 05:26:57 +08:00
|
|
|
mkdir -p build
|
2013-12-21 00:06:41 +08:00
|
|
|
}
|
2012-05-27 02:32:30 +08:00
|
|
|
|
2013-12-21 00:06:41 +08:00
|
|
|
build() {
|
2015-08-11 05:26:57 +08:00
|
|
|
cd build
|
|
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
|
|
make
|
2012-05-27 02:32:30 +08:00
|
|
|
}
|
2010-05-22 06:25:44 +08:00
|
|
|
|
2012-05-27 02:32:30 +08:00
|
|
|
package() {
|
2015-08-11 05:26:57 +08:00
|
|
|
cd build
|
|
|
|
make DESTDIR=${pkgdir} install
|
2010-05-22 06:25:44 +08:00
|
|
|
}
|