Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #2382 from mariux64/add-proxmox-backup-client
Add proxmox backup client
  • Loading branch information
donald committed Oct 5, 2021
2 parents a5efd3b + 5ad0cac commit 5ade4a8
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 0 deletions.
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)
}

#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/
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
#}

0 comments on commit 5ade4a8

Please sign in to comment.