blob: 08349b5c2c60d57e31e86bf6f3695807de44cf68 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Contributor: William Pitcock <nenolod@dereferenced.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=evolution
pkgver=3.22.2
pkgrel=0
pkgdesc="evolution mail client"
url="http://projects.gnome.org/evolution"
# limited by webkit2gtk
arch="x86 x86_64"
license="GPL"
depends="highlight gsettings-desktop-schemas"
depends_dev="itstool libxml2-dev gcr-dev enchant-dev libcanberra-dev
libgweather-dev openldap-dev libnotify-dev"
makedepends="$depends_dev gperf flex bison libxml2-utils glib-dev
webkit2gtk-dev gtkspell3-dev evolution-data-server-dev glib-dev
gtk+3.0-dev nss-dev"
install=""
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
source="http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz
"
builddir="${srcdir}/${pkgname}-${pkgver}"
build() {
cd "$builddir"
export ac_cv_libiconv_utf8=yes
./configure --prefix=/usr \
--sysconfdir=/etc \
--disable-gnome-desktop \
--disable-autoar \
--disable-libcryptui \
--disable-schemas-compile \
--disable-pst-import \
--with-openldap \
--enable-nss=yes \
--enable-smime=yes \
|| return 1
make || return 1
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install || return 1
}
md5sums="f23d051f89c82f4b8edc1e328487cf21 evolution-3.22.2.tar.xz"
sha256sums="670e4cb620d30a57480c7c6f4cfe4e3bef6175a6dddadb2a8607f3532a693d34 evolution-3.22.2.tar.xz"
sha512sums="8727c7b1d0c9480825451d6813863d2f664a606fdbc8a353cc027a58533b30adeecd1bf804ad2ba1cec384bf3d5cbaedfd1c99e810a2e47882f10770df0c422f evolution-3.22.2.tar.xz"
|