mirror of
https://github.com/vgough/encfs.git
synced 2025-08-10 22:35:38 +02:00
Building on Ubuntu WIP
30
Compiling-encfs-on-Ubuntu-14.04.md
Normal file
30
Compiling-encfs-on-Ubuntu-14.04.md
Normal file
@ -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
|
||||
```
|
Reference in New Issue
Block a user