diff options
Diffstat (limited to 'nonprism')
-rw-r--r-- | nonprism/gnome-online-accounts/PKGBUILD | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/nonprism/gnome-online-accounts/PKGBUILD b/nonprism/gnome-online-accounts/PKGBUILD index 6dca9837a..1a9906bf5 100644 --- a/nonprism/gnome-online-accounts/PKGBUILD +++ b/nonprism/gnome-online-accounts/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 280142 2016-11-07 20:57:04Z heftig $ -# Maintainer (Arch): Ionut Biru <ibiru@archlinux.org> +# $Id: PKGBUILD 283207 2016-12-14 12:11:46Z heftig $ +# Contributor (Arch): Ionut Biru <ibiru@archlinux.org> # Maintainer: Márcio Silva <coadde@parabola.nu> pkgname=gnome-online-accounts -pkgver=3.22.2 +pkgver=3.22.3 pkgrel=1.nonprism1 pkgdesc="Single sign-on framework for GNOME, without support for unsafe and dangerous for privacy protocols" url="https://wiki.gnome.org/Projects/GnomeOnlineAccounts" @@ -14,12 +14,19 @@ makedepends=(intltool gobject-introspection gtk-doc vala git gnome-common) conflicts=("${pkgname}-coherence" "${pkgname}-nonprism" ) replaces=("${pkgname}-coherence" "${pkgname}-nonprism") optdepends=('gvfs-goa: Virtual file systems (e.g. OwnCloud)') -_commit=85169f9691eabb7b45f5d07c6a6c98e0830b3754 # tags/3.22.2^0 -source=("git://git.gnome.org/gnome-online-accounts#commit=$_commit") -sha256sums=('SKIP') +_commit=d4dbce46808ed721478c57ce28c6e47fb6403932 # tags/3.22.3^0 +source=("git+https://git.gnome.org/browse/gnome-online-accounts#commit=$_commit" + "git+https://git.gnome.org/browse/telepathy-account-widgets") +sha256sums=('SKIP' + 'SKIP') prepare() { cd $pkgname + + git submodule init + git config --local submodule.telepathy-account-widgets.url "$srcdir/telepathy-account-widgets" + git submodule update + NOCONFIGURE=1 ./autogen.sh } |