mirror of https://github.com/ventoy/Ventoy.git
19 lines
202 B
Bash
19 lines
202 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
CUR="$PWD"
|
||
|
|
||
|
rm -rf libfuse
|
||
|
rm -rf LIBFUSE
|
||
|
|
||
|
unzip mirrors-libfuse-fuse-2.9.9.zip
|
||
|
|
||
|
|
||
|
cd libfuse
|
||
|
./makeconf.sh
|
||
|
|
||
|
./configure --prefix="$CUR/LIBFUSE"
|
||
|
make -j 16
|
||
|
make install
|
||
|
cd ..
|
||
|
rm -rf libfuse
|