summaryrefslogtreecommitdiff
path: root/kde-unstable/libkgoogle/PKGBUILD
blob: 1748fc7b65dae59be190ac387d02c94bc9f85e14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# $Id: PKGBUILD 159612 2012-05-25 20:44:23Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>

pkgname=libkgoogle
pkgver=0.3.2
pkgrel=1
pkgdesc="A KDE-based library for accessing various Google services via their public API"
url='https://projects.kde.org/projects/kdereview/libkgoogle'
arch=('i686' 'x86_64')
license=('GPL' 'LGPL' 'FDL')
depends=('kdepimlibs' 'qjson')
makedepends=('cmake' 'automoc4' 'boost')
replaces=('akonadi-google')
conflicts=('akonadi-google')
source=("http://www.progdan.cz/wp-content/uploads/${pkgname}-${pkgver}.tar.gz")
md5sums=('faa3af3bd402827b229c697b95865d1a')

build() {
  cd "${srcdir}"
  mkdir build
  cd build
  cmake ../${pkgname}-${pkgver} \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_INSTALL_PREFIX=/usr
  make
}

package() {
  cd "${srcdir}"/build
  make DESTDIR="${pkgdir}" install
}