1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-27 20:44:10 +00:00
Go to file
2020-02-09 18:53:40 +01:00
src feature: imported source code from webfuse 2020-02-09 18:53:40 +01:00
.gitignore feature: imported source code from webfuse 2020-02-09 18:53:40 +01:00
.travis.yml feature: imported source code from webfuse 2020-02-09 18:53:40 +01:00
CMakeLists.txt feature: imported source code from webfuse 2020-02-09 18:53:40 +01:00
LICENSE Initial commit 2020-02-09 17:13:07 +01:00
README.md feature: imported source code from webfuse 2020-02-09 18:53:40 +01:00

webfuse-provider

Reference implementation of webfuse provider

Build and run

To install dependecies, see below.

cd webfused
mkdir build
cd build
cmake ..
make
./webfuse-provider

Dependencies

Installing dependencies

libfuse

To install libfuse, meson is needed. Please refer to meson quick guide for setup instructions.

wget https://github.com/libfuse/libfuse/archive/fuse-3.9.0.tar.gz -O fuse.tar.gz
tar -xf fuse.tar.gz
cd libfuse-fuse-3.9.0
mkdir .build
cd .build
meson ..
ninja
sudo ninja install

libwebsockets

wget https://github.com/warmcat/libwebsockets/archive/v3.2.0.tar.gz -O libwebsockets.tar.gz
tar -xf libwebsockets.tar.gz
cd libwebsockets-3.2.0
mkdir .build
cd .build
cmake ..
make
sudo make install

jansson

wget https://github.com/akheron/jansson/archive/v2.12.tar.gz -O jansson.tar.gz
tar -xf jansson.tar.gz
cd jansson-2.12
mkdir .build
cd .build
cmake ..
make
sudo make install

openssl

sudo apt update
sudo install openssl libssl-dev

webfuse

wget https://github.com/falk-werner/webfuse/archive/master.tar.gz -O webfuse.tar.gz
tar -xf webfuse.tar.gz
cd webfuse-master
mkdir .build
cd .build
cmake -DWITHOUT_TESTS=ON -DWITHOUT_EXAMPLE=ON ..
make
sudo make install