Source
Installation from source
It’s very easy to compile from the source code.
Ensure your machine has the following:
git(usegit-bashon Windows)- Go compiler
GNU Make(preinstalled on many Unix systems). On Debian-based distributions (e.g., Ubuntu), install thebuild-essentialpackage.
Compilation:
git clone https://github.com/creativeprojects/resticprofile.git
cd resticprofile
make buildYour compiled binary (resticprofile or resticprofile.exe) is available in the current folder.
To install the binary in your user path:
make installTo build all common platforms (build-mac, build-linux, build-pi & build-windows):
make build-allAlternatively, a go-only build (without GNU Make) is accomplished with:
git clone https://github.com/creativeprojects/resticprofile.git
cd resticprofile
go build -v -o resticprofile .