diff options
Diffstat (limited to 'nonprism/gnome-online-accounts/PKGBUILD')
-rw-r--r-- | nonprism/gnome-online-accounts/PKGBUILD | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/nonprism/gnome-online-accounts/PKGBUILD b/nonprism/gnome-online-accounts/PKGBUILD new file mode 100644 index 000000000..2a0b56d78 --- /dev/null +++ b/nonprism/gnome-online-accounts/PKGBUILD @@ -0,0 +1,36 @@ +# $Id: PKGBUILD 214331 2014-06-06 21:01:31Z heftig $ +# Maintainer (Arch): Ionut Biru <ibiru@archlinux.org> +# Maintainer: Márcio Silva <coadde@parabola.nu> + +pkgname=gnome-online-accounts +pkgver=3.12.3 +pkgrel=1.nonprism1 +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') +conflicts=("${pkgname}-coherence" "${pkgname}-nonprism" ) +replaces=("${pkgname}-coherence" "${pkgname}-nonprism") +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=('afd7e2f0e6eccbde92f10183ea366c95b579767c540442ef82e4009d7759eda6') + +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: |