You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Falk Werner ee36d4ea2f
use own implementation of static filesystem, since webfuse deprecated their one
5 years ago
src use own implementation of static filesystem, since webfuse deprecated their one 5 years ago
.gitignore use own implementation of static filesystem, since webfuse deprecated their one 5 years ago
.travis.yml removed unnecessary dependencies 5 years ago
CMakeLists.txt use own implementation of static filesystem, since webfuse deprecated their one 5 years ago
LICENSE Initial commit 5 years ago
README.md removed unnecessary dependencies 5 years ago

README.md

Build Status

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

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

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_ADAPTER=ON ..
make
sudo make install