-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2382 from mariux64/add-proxmox-backup-client
Add proxmox backup client
- Loading branch information
Showing
2 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
#} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
#} |