1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00

install libfuse before build

This commit is contained in:
Falk Werner 2019-02-10 08:22:03 +01:00
parent 9b436f9789
commit 1d5b434d8b

View File

@ -3,6 +3,15 @@ language: cpp
compiler: compiler:
- gcc - gcc
before_install:
- wget https://github.com/libfuse/libfuse/archive/fuse-3.1.1.tar.gz
- tar -xf fuse-3.1.1.tar.gz
- cd libfuse-fuse-3.1.1
- ./makeconf.sh
- ./configure
- make
- sudo make install
before_script: before_script:
- mkdir .build - mkdir .build
- cd .build - cd .build