Skip to content

Instantly share code, notes, and snippets.

@PostgreSqlStan
Last active September 19, 2021 13:47
Show Gist options
  • Save PostgreSqlStan/e64aa5d7f5413cdc3e70d2cbe88b5f78 to your computer and use it in GitHub Desktop.
Save PostgreSqlStan/e64aa5d7f5413cdc3e70d2cbe88b5f78 to your computer and use it in GitHub Desktop.
Install xz from source on MacOS
# tested on macOS 11.5.2 (Big Sur)
curl -OL https://tukaani.org/xz/xz-5.2.5.tar.gz
tar -xvf xz-5.2.5.tar.gz
cd xz-5.2.5/
./configure
make
make test # optional
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment