aboutsummaryrefslogtreecommitdiffhomepage
path: root/build-linux/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'build-linux/README.md')
-rw-r--r--build-linux/README.md30
1 files changed, 30 insertions, 0 deletions
diff --git a/build-linux/README.md b/build-linux/README.md
new file mode 100644
index 00000000..4ddd6b13
--- /dev/null
+++ b/build-linux/README.md
@@ -0,0 +1,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 libuchardet-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
+```