Created
August 18, 2019 03:33
-
-
Save brianc118/a71f6d41c4d105835f91d173f2f1cd5c to your computer and use it in GitHub Desktop.
Install sox 14.4.2 locally without root
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 | |
# | |
# USAGE: ./sox_local_install INSTALL_DIR | |
# | |
# Note. INSTALL_DIR needs to be an absolute path | |
INSTALL_DIR=$1 | |
wget https://nchc.dl.sourceforge.net/project/sox/sox/14.4.2/sox-14.4.2.tar.gz | |
tar xvfz sox-14.4.2.tar.gz | |
cd sox-14.4.2 | |
./configure --prefix=INSTALL_DIR |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment