From 05fac524b5801e15e20d704d9c75afe0bb6bea63 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Mon, 4 Oct 2021 15:22:34 +0200 Subject: [PATCH] libfuse: Add version 3.10.5 Create bee template from mTEMPLATE.be0 Add option useroot=false to disable install_helper.sh from the package to use chown and chmod u+s on fusermount3. This is so that the bee script can be called without root (`unshare -r`) Add `chmod u+s $D$BINDIR/fusermount3` because it is no longer done by install_helper.sh. --- libfuse.be0 | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 libfuse.be0 diff --git a/libfuse.be0 b/libfuse.be0 new file mode 100755 index 000000000..c2b3bff51 --- /dev/null +++ b/libfuse.be0 @@ -0,0 +1,38 @@ +#!/usr/bin/env beesh + +# BEE_VERSION libfuse-3.10.5-0 + +# more info: https://github.com/libfuse + +SRCURL[0]="https://github.com/libfuse/libfuse/releases/download/fuse-${PKGVERSION}/fuse-${PKGVERSION}.tar.xz" + +# PATCHURL+=() + +# build_in_sourcedir + +# sourcesubdir_append src + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +mee_configure() { + bee_configure -D useroot=false +} + +#mee_build() { +# bee_build +#} + +mee_install() { + bee_install + chmod u+s $D$BINDIR/fusermount3 +} + +#mee_install_post() { +# exit +#}