blob: 843994caf156cbc33c8fe6021dbd8b73b80b80ff (
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
|
# Description: Connecteur Exchange pour Evolution
# URL: http://projects.gnome.org/evolution/
# Maintainer: NuTyX GNOME team
# Packager: piernov <piernov@piernov.org>
# Depends on: evolution-data-server, gtkhtml, gnome-desktop, evolution, intltool
# Run on: evolution-data-server,gtkhtml,gnome-desktop,evolution
name=evolution-exchange
version=3.3.91
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/lib/$name \
--disable-schemas-install \
--disable-gtk-doc \
--with-krb5 \
--with-openldap
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/gtk-doc
}
|