removed unnecessary dependencies

pull/1/head
Falk Werner 5 years ago
parent b3fc5ce86e
commit 0aed508a06

@ -14,31 +14,10 @@ addons:
- pkgconf
- wget
- ca-certificates
- uuid-dev
- udev
- gettext
- python3
- python3-pip
- python3-setuptools
- python3-wheel
- ninja-build
before_install:
- mkdir .deps
- cd .deps
# libfuse
- sudo pip3 install --system meson
- 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
- cd ..
- cd ..
# libwebsockets
- wget https://github.com/warmcat/libwebsockets/archive/v3.2.0.tar.gz -O libwebsockets.tar.gz
- tar -xf libwebsockets.tar.gz
@ -67,7 +46,7 @@ before_install:
- cd webfuse-master
- mkdir .build
- cd .build
- cmake -DWITHOUT_TESTS=ON -DWITHOUT_EXAMPLE=ON ..
- cmake -DWITHOUT_ADAPTER=ON ..
- make
- sudo make install
- cd ..

@ -18,25 +18,11 @@ To install dependecies, see below.
## Dependencies
- [webfuse](https://github.com/falk-werner/webfuse)
- [libfuse](https://github.com/libfuse/libfuse/)
- [libwebsockets](https://libwebsockets.org/)
- [jansson](https://github.com/akheron/jansson)
### Installing dependencies
#### libfuse
To install libfuse, meson is needed. Please refer to [meson quick guide](https://mesonbuild.com/Quick-guide.html) 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
@ -60,11 +46,6 @@ To install libfuse, meson is needed. Please refer to [meson quick guide](https:/
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
@ -72,6 +53,6 @@ To install libfuse, meson is needed. Please refer to [meson quick guide](https:/
cd webfuse-master
mkdir .build
cd .build
cmake -DWITHOUT_TESTS=ON -DWITHOUT_EXAMPLE=ON ..
cmake -DWITHOUT_ADAPTER=ON ..
make
sudo make install

Loading…
Cancel
Save