mirror of
https://github.com/ventoy/Ventoy.git
synced 2024-11-04 06:00:13 +00:00
23 lines
323 B
Bash
23 lines
323 B
Bash
#!/bin/bash
|
|
|
|
CUR="$PWD"
|
|
|
|
rm -rf libfuse
|
|
rm -rf LIBFUSE
|
|
|
|
if [ -e mirrors-libfuse-fuse-2.9.9.zip ]; then
|
|
unzip mirrors-libfuse-fuse-2.9.9.zip
|
|
cd libfuse
|
|
else
|
|
unzip libfuse-fuse-2.9.9.zip
|
|
cd libfuse-fuse-2.9.9
|
|
fi
|
|
|
|
./makeconf.sh
|
|
|
|
./configure --prefix="$CUR/LIBFUSE"
|
|
make -j 16
|
|
make install
|
|
cd ..
|
|
rm -rf libfuse
|