mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
32 lines
927 B
Bash
32 lines
927 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
# contributor (x86_64): Giuseppe calà <jiveaxe@gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=akonadi-googledata
|
|
pkgver=1.2.0
|
|
pkgrel=3
|
|
pkgdesc="Akonadi GoogleData Plugin"
|
|
arch=('i686' 'x86_64')
|
|
url="http://pim.kde.org/akonadi/"
|
|
license=('GPL')
|
|
depends=('libgcal>=0.9.6' 'kdepimlibs>=4.5.0' 'libxslt')
|
|
makedepends=('cmake' 'automoc4' 'boost')
|
|
source=(http://libgcal.googlecode.com/files/$pkgname-$pkgver.tar.bz2)
|
|
|
|
md5sums=('483bb82d4492ff20edb64d3d4edc02eb')
|
|
|
|
build() {
|
|
mkdir -p ${srcdir}/build
|
|
cd ${srcdir}/build
|
|
cmake ../${pkgname}-${pkgver} -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RELEASE
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|
|
|