summaryrefslogtreecommitdiffstats
path: root/evolution-data-server/Pkgfile
blob: 7aa036b51a58c2938a02e7fdc94ae2867b425864 (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
28
29
30
31
32
33
# Description: Evolution's Backend Server
# Maintainer: NuTyX GNOME team
# Packager: thierryn1 at hispeed dot ch
# Depends on: libgnomeui, libsoup, nss, libical, libgweather, popt, bison, libgdata, gnome-online-accounts, openldap, kerberos
# Run on: libgnomeui,libsoup,nss,libical,libgweather,popt,bison,libgdata,gnome-online-accounts,openldap,kerberos

name=evolution-data-server
version=3.4.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/lib/evolution-data-server \
		--enable-goa \
		--enable-ssl \
		--enable-smime \
		--enable-ipv6=yes \
		--enable-calendar=yes \
		--enable-weather \
		--enable-nntp \
		--enable-purify \
		--disable-schemas-install \
		--disable-gtk-doc \
		--with-krb5 \
		--with-openldap
	make
	make DESTDIR=$PKG install
	rm -rf $PKG/usr/share/gtk-doc
}