removed unnecessary dependencies

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

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

@ -18,25 +18,11 @@ To install dependecies, see below.
## Dependencies ## Dependencies
- [webfuse](https://github.com/falk-werner/webfuse) - [webfuse](https://github.com/falk-werner/webfuse)
- [libfuse](https://github.com/libfuse/libfuse/)
- [libwebsockets](https://libwebsockets.org/) - [libwebsockets](https://libwebsockets.org/)
- [jansson](https://github.com/akheron/jansson) - [jansson](https://github.com/akheron/jansson)
### Installing dependencies ### 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 #### libwebsockets
wget https://github.com/warmcat/libwebsockets/archive/v3.2.0.tar.gz -O libwebsockets.tar.gz 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 make
sudo make install sudo make install
#### openssl
sudo apt update
sudo install openssl libssl-dev
#### webfuse #### webfuse
wget https://github.com/falk-werner/webfuse/archive/master.tar.gz -O webfuse.tar.gz 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 cd webfuse-master
mkdir .build mkdir .build
cd .build cd .build
cmake -DWITHOUT_TESTS=ON -DWITHOUT_EXAMPLE=ON .. cmake -DWITHOUT_ADAPTER=ON ..
make make
sudo make install sudo make install

Loading…
Cancel
Save