Skip to content

Instantly share code, notes, and snippets.

@gkawamoto
Created November 14, 2019 19:57
Show Gist options
  • Save gkawamoto/42f127bdc6d04b145ee14418692029a6 to your computer and use it in GitHub Desktop.
Save gkawamoto/42f127bdc6d04b145ee14418692029a6 to your computer and use it in GitHub Desktop.
Compiling pgBackRest @ Debian 10
#!/bin/bash
# Download
wget https://github.com/pgbackrest/pgbackrest/archive/release/2.19.tar.gz
# Uncompress
tar xfvz 2.19.tar.gz
cd pgbackrest-release-2.19/src/
# Dependencies
apt-get update
apt-get install -y libssl-dev libxml2-dev libperl-dev gcc libpq-dev libz-dev make
# Build
./configure && make
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment