diff options
author | root <root@rshg054.dnsready.net> | 2012-06-13 00:01:51 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-06-13 00:01:51 +0000 |
commit | f46e734fbcd0b4cbae2cff1a017b95e4e8e02d53 (patch) | |
tree | 155102fee24f637e46976eb759175c3c2fbc1f40 /kde-unstable/akonadi/PKGBUILD | |
parent | fd4cd23b679e620a51c42e87a0655d55704fdba8 (diff) |
Wed Jun 13 00:01:51 UTC 2012
Diffstat (limited to 'kde-unstable/akonadi/PKGBUILD')
-rw-r--r-- | kde-unstable/akonadi/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/kde-unstable/akonadi/PKGBUILD b/kde-unstable/akonadi/PKGBUILD new file mode 100644 index 000000000..3c9a18e81 --- /dev/null +++ b/kde-unstable/akonadi/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 161492 2012-06-11 21:12:03Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Pierre Schmitz <pierre@archlinux.de> + +pkgname=akonadi +pkgver=1.7.90 +pkgrel=1 +pkgdesc="PIM layer, which provides an asynchronous API to access all kind of PIM data" +arch=('i686' 'x86_64') +url='http://pim.kde.org/akonadi' +license=('LGPL') +depends=('shared-mime-info' 'boost-libs' 'mysql' 'soprano') +makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost') +install="${pkgname}.install" +source=("http://download.kde.org/stable/${pkgname}/src/${pkgname}-${pkgver}.tar.bz2") +md5sums=('573c1750c9ebb1f70ad39109f518c915') + +build() { + cd "${srcdir}" + mkdir 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 +} |