wok-next view evolution-data-server/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="evolution-data-server"
4 VERSION="2.28.1"
5 CATEGORY="network"
6 SHORT_DESC="Integrated mail, addressbook and calendaring, server"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="LGPL2"
9 WEB_SITE="https://wiki.gnome.org/Apps/Evolution"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
14 BUILD_DEPENDS="libglade-dev libsoup-dev gtk2-dev orbit2-dev libbonobo-dev \
15 gconf-dev libical-dev firefox-dev db-dev libxcb-dev popt-dev bison flex \
16 glib-dev sqlite3-dev"
17 SPLIT="$PACKAGE-dev"
19 compile_rules() {
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --libexecdir=/usr/lib/evolution-data-server-1.2 \
24 --mandir=/usr/share/man \
25 --without-weather \
26 --enable-ipv6=no \
27 --enable-libdb \
28 --with-db=/usr/lib \
29 --with-nspr-include=/usr/include/firefox-3.5.3/stable \
30 --with-nspr-libs=/usr/lib/firefox-devel-3.5.3/sdk/lib \
31 $CONFIGURE_ARGS &&
32 make &&
33 make DESTDIR=$install install
34 }
36 genpkg_rules() {
37 case $PACKAGE in
38 evolution-data-server)
39 copy @std
40 DEPENDS="libgnomeui libsoup"
41 ;;
42 *-dev)
43 copy @dev
44 ;;
45 esac
46 }