mirror of
https://github.com/ventoy/Ventoy.git
synced 2024-11-04 06:00:13 +00:00
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
|