opt: cygfuse: fuse3

This commit is contained in:
Bill Zissimopoulos
2018-07-25 21:15:16 -07:00
parent 1ace7ffb41
commit 897a08700b
14 changed files with 297 additions and 11 deletions

View File

@ -1,8 +1,15 @@
cd "$(dirname "$0")"
case $(uname -m) in
x86_64)
tar -C/ -xaf x64/fuse-2.8-*.tar.xz ;;
tar -C/ -xaf x64/fuse-2.*.tar.xz
tar -C/ -xaf x64/fuse-3.*.tar.xz
;;
i686)
tar -C/ -xaf x86/fuse-2.*.tar.xz
tar -C/ -xaf x86/fuse-3.*.tar.xz
;;
*)
tar -C/ -xaf x86/fuse-2.8-*.tar.xz ;;
echo unsupported architecture 1>&2
exit 1
esac
echo FUSE for Cygwin installed.