Created
November 14, 2019 19:57
-
-
Save gkawamoto/42f127bdc6d04b145ee14418692029a6 to your computer and use it in GitHub Desktop.
Compiling pgBackRest @ Debian 10
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
#!/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