evolution-etesync

Read-only mirror of https://gitlab.gnome.org/GNOME/evolution-etesync

LGPL-2.1 License

Stars
2

Evolution EteSync

EteSync plugin for Evolution.

BUILD

The development packages needed

This is for ubuntu, please check simillar development package depending on you disto

$ sudo apt install libical2-dev/
    libebook1.2-dev
    libecal2.0-dev
    libedata-cal2.0-dev
    libedata-book1.2-dev
    evolution-data-server-dev
    evolution-dev

Module installation

Go to the evolution-etesync folder then run the following commands

$ mkdir build
$ cd build
$ cmake -DCMAKE_INSTALL_PREFIX=/usr ..
$ make -j
$ sudo make -j install

Run cmake --help to get list of available generators (the -G argument) on your platform.

Note

Please note that fedora users may need to also run

$ export PKG_CONFIG_PATH=/usr/lib/pkgconfig

and replace the cmake command with

$ cmake -DCMAKE_INSTALL_PREFIX=/usr -DLIB_SUFFIX=64 ..