diff options
author | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2013-08-19 22:33:47 -0300 |
---|---|---|
committer | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2013-08-19 22:33:47 -0300 |
commit | 2a415e02ba80b0da1d6c3d576f31ddb408852857 (patch) | |
tree | b50fae34dce2c408e98faf98da3026f825b855f3 /coherence/gnome-online-accounts-coherence/PKGBUILD | |
parent | ec40c4e1c8f3e7e82985dc58bfcdfbe5a139ffa9 (diff) | |
download | abslibre-2a415e02ba80b0da1d6c3d576f31ddb408852857.tar.gz abslibre-2a415e02ba80b0da1d6c3d576f31ddb408852857.tar.bz2 abslibre-2a415e02ba80b0da1d6c3d576f31ddb408852857.zip |
mv gnome-online-accounts -> gnome-online-accounts-coherence
Diffstat (limited to 'coherence/gnome-online-accounts-coherence/PKGBUILD')
-rw-r--r-- | coherence/gnome-online-accounts-coherence/PKGBUILD | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/coherence/gnome-online-accounts-coherence/PKGBUILD b/coherence/gnome-online-accounts-coherence/PKGBUILD new file mode 100644 index 000000000..4f1809e83 --- /dev/null +++ b/coherence/gnome-online-accounts-coherence/PKGBUILD @@ -0,0 +1,53 @@ +# $Id$ +# Maintainer: Ionut Biru <ibiru@archlinux.org> +# Maintainer (Parabola): Márcio Silva <coadde@lavabit.com> + +_pkgname=gnome-online-accounts +pkgname=gnome-online-accounts-coherence +pkgver=3.8.2 +pkgrel=2 +pkgdesc="GNOME service to access online accounts, without support for nonfree, unsafe and dangerous for privacy protocols" +arch=(i686 x86_64 mips64el) +url="http://www.gnome.org" +license=('GPL') +depends=('webkitgtk3' 'json-glib' 'libnotify' 'rest' 'hicolor-icon-theme' 'libsecret') +makedepends=('intltool' 'libxslt' 'gobject-introspection' 'docbook-xsl') +provides=("$_pkgname=$pkgver") +conflicts=$_pkgname +replaces=$_pkgname +options=(!libtool) +install=$_pkgname.install +source=(http://download.gnome.org/sources/$_pkgname/${pkgver:0:3}/$_pkgname-$pkgver.tar.xz + imap-smtp.patch + smtp-auth-plain.patch) +sha256sums=('12611a002043c8acc29e9800ec009e3e19736bdb6237d246e848d7c7909fe826' + '2b413d1f401647bd143b7dc6dd4b6d6660ff47ef9a11ccbc691b7c13de5cba69' + 'e7250be7c078053345699250433b7164751d3e457155bd35508c7d1660f459be') + +prepare() { + cd $_pkgname-$pkgver + # Upstream 3.8 branch + patch -Np1 -i ../imap-smtp.patch + patch -Np1 -i ../smtp-auth-plain.patch +} + +build() { + cd $_pkgname-$pkgver + ./configure --prefix=/usr --libexec=/usr/lib/gnome-online-accounts \ + --disable-google \ + --disable-owncloud \ + --disable-facebook \ + --disable-windows-live \ + --disable-exchange \ + --disable-flickr \ + --enable-imap-smtp \ + --disable-kerberos + make +} + +package() { + cd $_pkgname-$pkgver + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: |