]> glassweightruler.freedombox.rocks Git - Ventoy.git/blob - FUSEISO/build_libfuse.sh
Add German language (#57)
[Ventoy.git] / FUSEISO / build_libfuse.sh
1 #!/bin/bash
2
3 #
4 #
5 # Package Dependency:
6 # gcc automake autoconf gettext gettext-devel libtool unzip
7 #
8 #
9
10
11 CUR="$PWD"
12 LIBFUSE_DIR=$CUR/LIBFUSE
13
14 rm -rf libfuse
15 rm -rf $LIBFUSE_DIR
16
17 # please download https://gitee.com/mirrors/libfuse/repository/archive/fuse-2.9.9.zip
18 if ! [ -e mirrors-libfuse-fuse-2.9.9.zip ]; then
19 echo "Please download mirrors-libfuse-fuse-2.9.9.zip first"
20 exit 1
21 fi
22
23 unzip mirrors-libfuse-fuse-2.9.9.zip
24
25
26 cd libfuse
27 ./makeconf.sh
28
29 ./configure --prefix="$LIBFUSE_DIR"
30 make -j 16
31 make install
32 cd ..
33 rm -rf libfuse