diff options
Diffstat (limited to 'gnome-online-accounts/Pkgfile')
-rw-r--r-- | gnome-online-accounts/Pkgfile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnome-online-accounts/Pkgfile b/gnome-online-accounts/Pkgfile new file mode 100644 index 0000000..f844e6e --- /dev/null +++ b/gnome-online-accounts/Pkgfile @@ -0,0 +1,26 @@ +# Description: Fournit une interface permettant aux applications Gnome d'acceder au compte en ligne de l'utilisateur. +# URL: http://www.gnome.org/ +# Maintainer: NutyX GNOME team +# Packager: piernov <piernov@piernov.org> +# Depends on: liboauth, rest, webkit, json-glib, libnotify, gnome-keyring, gobject-introspection +# Run on: liboauth,rest,webkit,json-glib,libnotify,gnome-keyring + +name=gnome-online-accounts +version=3.1.1 +release=1 +source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz) + +build() { + cd $name-$version + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --libexecdir=/usr/bin \ + --enable-google \ + --enable-twitter \ + --enable-yahoo \ + --enable-facebook + make + make DESTDIR=$PKG install +} + |