mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 23:27:16 +08:00
34 lines
999 B
Bash
34 lines
999 B
Bash
# Maintainer: Manuel Tortosa <manutortosa@chakra-project@org>
|
|
# Contributors: H W Tovetjärn (totte) <totte@tott.es>
|
|
|
|
pkgname=akonadi
|
|
pkgver=1.11.0
|
|
pkgrel=1
|
|
pkgdesc="PIM layer, which provides an asynchronous API to access all kind of PIM data"
|
|
arch=('x86_64')
|
|
url='http://www.akonadi-project.org'
|
|
license=('LGPL')
|
|
depends=('shared-mime-info' 'boost-libs' 'mariadb' 'soprano>=2.7.56')
|
|
makedepends=('pkg-config' 'cmake' 'automoc4' 'boost' 'postgresql')
|
|
optdepends=('postgresql: PostgreSQL backend')
|
|
install=$pkgname.install
|
|
source=("http://download.kde.org/stable/akonadi/src/${pkgname}-${pkgver}.tar.bz2")
|
|
sha1sums=('a118e097c0b021434874ebfbf6a36c98e87f6f0b')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
cd ${srcdir}
|
|
mkdir -p build
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/build
|
|
make DESTDIR=${pkgdir} install
|
|
}
|