mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 02:37:17 +08:00
33 lines
831 B
Bash
33 lines
831 B
Bash
# $Id: $
|
|
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
|
|
# Contributor: Pierre Schmitz <pierre@archlinux.de>
|
|
|
|
pkgname=akonadi
|
|
pkgver=1.3.1
|
|
pkgrel=2
|
|
pkgdesc="PIM layer, which provides an asynchronous API to access all kind of PIM data"
|
|
arch=('i686' 'x86_64')
|
|
url='http://www.akonadi-project.org'
|
|
license=('LGPL')
|
|
depends=('shared-mime-info' 'boost' 'mysql' 'soprano')
|
|
makedepends=('pkgconfig' 'cmake' 'automoc4')
|
|
install=$pkgname.install
|
|
source=("http://download.akonadi-project.org/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('e6eef3ed5c28d55f4b6530544e379413')
|
|
|
|
build() {
|
|
cd ${srcdir}
|
|
mkdir build
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_SKIP_RPATH=ON
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/build
|
|
make DESTDIR=${pkgdir} install
|
|
}
|