blob: 881d3c49d700dbec837705d17dc551a4c54158b4 (
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
32
33
34
35
36
37
38
|
# $Id: PKGBUILD 213494 2014-05-23 23:50:47Z heftig $
# Maintainer (Arch): Ionut Biru <ibiru@archlinux.org>
# Maintainer: Márcio Silva <coadde@parabola.nu>
_pkgname=gnome-online-accounts
pkgname=gnome-online-accounts-nonprism
pkgver=3.12.2
pkgrel=1
pkgdesc="GNOME service to access online accounts, without support for unsafe and dangerous for privacy protocols"
arch=(i686 x86_64 mips64el)
url="http://www.gnome.org"
license=('GPL')
provides=("$_pkgname=$pkgver")
conflicts=($_pkgname)
replaces=($_pkgname $pkgname-coherence)
depends=('webkitgtk' 'json-glib' 'libnotify' 'rest' 'hicolor-icon-theme' 'libsecret'
'telepathy-glib' 'krb5' 'gcr')
makedepends=('intltool' 'libxslt' 'gobject-introspection' 'docbook-xsl')
install=$_pkgname.install
source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgname/${pkgver:0:4}/$_pkgname-$pkgver.tar.xz)
sha256sums=('cac7758e09d32eb54af50ab6b23d65da0c8d48c555c8db011a0cf5b977d542ec')
build() {
cd $_pkgname-$pkgver
./configure --prefix=/usr --libexecdir=/usr/lib/$_pkgname --disable-static \
--disable-exchange --disable-facebook -disable-flickr \
--disable-google --enable-imap-smtp --disable-kerberos \
--enable-owncloud --enable-telepathy --disable-windows-live \
--disable-twitter --disable-yahoo
make
}
package() {
cd $_pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
# vim:set ts=2 sw=2 et:
|