Files
ports/testing/evolution-data-server/spkgbuild
2020-04-18 13:25:58 +08:00

31 lines
912 B
Plaintext
Executable File

# description : Unified backend for programs that work with contacts, tasks, and calendar information
# depends : db libical gcr libsecret nss sqlite gnome-online-accounts gtk3 icu libgdata libgweather blocaled
name=evolution-data-server
version=3.34.3
release=1
source="http://ftp.gnome.org/pub/gnome/sources/evolution-data-server/${version%.*}/evolution-data-server-$version.tar.xz"
build() {
cd $name-$version
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr \
-DLIBEXEC_INSTALL_DIR=/usr/lib \
-DSYSCONF_INSTALL_DIR=/etc \
-DENABLE_VALA_BINDINGS=ON \
-DENABLE_GOOGLE=ON \
-DWITH_OPENLDAP=OFF \
-DWITH_KRB5=OFF \
-DENABLE_INTROSPECTION=ON \
-DENABLE_GTK_DOC=OFF \
-DWITH_SYSTEMDUSERUNITDIR=no \
..
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/locale
}