diff --git a/Compiling-encfs-on-Ubuntu-14.04.md b/Compiling-encfs-on-Ubuntu-14.04.md new file mode 100644 index 0000000..434dbe2 --- /dev/null +++ b/Compiling-encfs-on-Ubuntu-14.04.md @@ -0,0 +1,30 @@ +This document is a work in progress + +# Install prerequisites + +Build tools + + apt-get install build-essential autoconf automake make libtool + +encfs dependencies + + apt-get install libfuse-dev libssl-dev librlog-dev libboost-all-dev + +# Prepare the sources for compiling + +``` +libtoolize --force +aclocal +autoheader +touch build-aux/config.rpath +automake --force-missing --add-missing +autoconf +``` + +# Compile + +``` +./configure --with-boost-libdir=/usr/lib/x86_64-linux-gnu +make +make install +``` \ No newline at end of file