Skip to content

Add proxmox backup client #2382

Merged
merged 4 commits into from Oct 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
39 changes: 39 additions & 0 deletions libfuse.be0
@@ -0,0 +1,39 @@
#!/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"
SRCURL[0]="https://beehive.molgen.mpg.de/d2eb13af5288047dc942fc84e608cfbd/fuse-3.10.5.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
#}
42 changes: 42 additions & 0 deletions proxmox-backup-client.be0
@@ -0,0 +1,42 @@
#!/usr/bin/env beesh

# BEE_VERSION proxmox-backup-client-2.0.9_2-0

# more info: https://pbs.proxmox.com/docs/backup-client.html

#SRCURL[0]="http://download.proxmox.com/debian/pbs-client/dists/bullseye/main/binary-amd64/proxmox-backup-client_${PKGVERSION}-${PKGEXTRAVERSION}_amd64.deb"
SRCURL[0]="https://beehive.molgen.mpg.de/0d7f51b447a07ce70c1d0db1cdbe7b6c/proxmox-backup-client_2.0.9-2_amd64.deb"

# PATCHURL+=()

# build_in_sourcedir

# sourcesubdir_append src

mee_extract() {
mkdir -p $B
(cd $B && ar xv "${@}" && tar xf control.tar.xz && tar xf data.tar.xz)
donald marked this conversation as resolved.
Show resolved Hide resolved
}

#mee_patch() {
# bee_patch "${@}"
#}

#mee_configure() {
# bee_configure
#}

mee_build() {
:
}

mee_install() {
mkdir -p $D$BINDIR $D$MANDIR/man1 $D$DATAROOTDIR/bash-completion/completions
cp $B/usr/bin/* $D$BINDIR/
donald marked this conversation as resolved.
Show resolved Hide resolved
cp $B/usr/share/man/man1/* $D$MANDIR/man1/
cp $B/usr/share/bash-completion/completions/* $D$DATAROOTDIR/bash-completion/completions/
}

#mee_install_post() {
# exit
#}