Building on Ubuntu WIP

samrocketman
2014-09-10 21:24:58 -07:00
parent 182af11880
commit 81b7a640ef

@ -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
```