mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-28 10:20:07 +00:00
29 lines
754 B
Plaintext
Executable File
29 lines
754 B
Plaintext
Executable File
# description : Integrated mail, calendar and address book suite designed for the GNOME environment
|
|
# depends : adwaita-icon-theme gnome-autoar itstool libgdata webkitgtk
|
|
|
|
name=evolution
|
|
version=3.34.3
|
|
release=1
|
|
source="http://ftp.gnome.org/pub/gnome/sources/evolution/${version%.*}/evolution-$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_PST_IMPORT=OFF \
|
|
-DENABLE_YTNEF=OFF \
|
|
-DENABLE_CONTACT_MAPS=OFF \
|
|
-DWITH_OPENLDAP=OFF \
|
|
-DENABLE_TEXT_HIGHLIGHT=OFF \
|
|
-G Ninja ..
|
|
ninja
|
|
DESTDIR=$PKG ninja install
|
|
|
|
rm -r $PKG/usr/share/locale
|
|
}
|