mirror of
https://github.com/ventoy/Ventoy.git
synced 2024-11-06 03:20:39 +00:00
41 lines
829 B
Bash
41 lines
829 B
Bash
#!/bin/bash
|
|
|
|
#
|
|
#
|
|
# Package Dependency:
|
|
# gcc automake autoconf gettext gettext-devel libtool unzip
|
|
#
|
|
#
|
|
|
|
# use mini-native-x86_64 UCLIBC to build for x86_64
|
|
|
|
|
|
CUR="$PWD"
|
|
LIBFUSE_DIR=$CUR/LIBFUSE
|
|
|
|
rm -rf libfuse
|
|
rm -rf $LIBFUSE_DIR
|
|
|
|
# please download https://codeload.github.com/libfuse/libfuse/zip/fuse-2.9.9
|
|
if [ -e ../ExFAT/mirrors-libfuse-fuse-2.9.9.zip ]; then
|
|
rm -rf libfuse
|
|
unzip ../ExFAT/mirrors-libfuse-fuse-2.9.9.zip
|
|
cd libfuse
|
|
elif [ -e ../ExFAT/libfuse-fuse-2.9.9.zip ]; then
|
|
rm -rf libfuse-fuse-2.9.9
|
|
unzip ../ExFAT/libfuse-fuse-2.9.9.zip
|
|
cd libfuse-fuse-2.9.9
|
|
else
|
|
echo "Please download mirrors-libfuse-fuse-2.9.9.zip first"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
./makeconf.sh
|
|
|
|
./configure --prefix="$LIBFUSE_DIR" CFLAGS='-specs /usr/local/musl/lib/musl-gcc.specs'
|
|
make -j 16
|
|
make install
|
|
cd ..
|
|
rm -rf libfuse
|