aboutsummaryrefslogtreecommitdiffhomepage
path: root/build-linux/README.md
blob: 5c69644ac675228575b6fa1bf2f1043b35182cf4 (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
### Build on Linux ###

- Install the following debian packages:

```
sudo apt-get install libctemplate-dev libicu-dev libsasl2-dev libtidy-dev \
    uuid-dev libxml2-dev libglib2.0-dev autoconf automake libtool
```

- Grab and compile the latest of libetpan: https://github.com/dinhviethoa/libetpan

```
mkdir ~/libetpan
cd ~/libetpan
git clone --depth=1 https://github.com/dinhviethoa/libetpan
cd libetpan
./autogen.sh
make >/dev/null
sudo make install prefix=/usr >/dev/null
```

- Compile MailCore 2:

```
cd ~/mailcore2
mkdir build
cd build
cmake ..
make
```