Skip to content

Instantly share code, notes, and snippets.

@gkawamoto
Created November 14, 2019 19:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gkawamoto/160134fbbcb2321772562693040e1ce5 to your computer and use it in GitHub Desktop.
Save gkawamoto/160134fbbcb2321772562693040e1ce5 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