desktop/akonadi-calendar/PKGBUILD
2016-08-04 12:44:34 +01:00

31 lines
632 B
Bash

# Include global configuration
source ../kdeapps.conf
pkgname=akonadi-calendar
pkgver=${_kdever}
pkgrel=1
pkgdesc="Akonadi calendar integration"
arch=('x86_64')
url="https://projects.kde.org/$pkgname"
license=(LGPL)
depends=(kmailtransport kcalutils akonadi-contacts)
makedepends=(extra-cmake-modules kdoctools python3 boost)
options=('debug')
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
}