blob: 7ee4bc2865069cc656d48ff4bfd4b2382a66c379 (
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
|
# 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.4.0
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 \
--enable-introspection=yes
make
make DESTDIR=$PKG install
}
|