Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
donald committed Oct 4, 2021
1 parent ac79c34 commit 05fac52
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions 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
#}

0 comments on commit 05fac52

Please sign in to comment.