1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-28 07:30:46 +00:00
Go to file
2020-06-06 15:07:25 +02:00
src switched to webfuse 0.2.0 2020-03-01 20:31:41 +01:00
subprojects enabled meson build 2020-06-06 15:07:25 +02:00
.gitignore enabled meson build 2020-06-06 15:07:25 +02:00
.travis.yml switched to webfuse 0.2.0 2020-03-01 20:31:41 +01:00
CMakeLists.txt use own implementation of static filesystem, since webfuse deprecated their one 2020-02-20 18:31:31 +01:00
LICENSE Initial commit 2020-02-09 17:13:07 +01:00
meson.build enabled meson build 2020-06-06 15:07:25 +02:00
README.md switched to webfuse 0.2.0 2020-03-01 20:31:41 +01:00

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/v0.2.0.tar.gz -O webfuse.tar.gz
tar -xf webfuse.tar.gz
cd webfuse-0.2.0
mkdir .build
cd .build
cmake -DWITHOUT_ADAPTER=ON ..
make
sudo make install