Skip to content

Instantly share code, notes, and snippets.

@brianc118
Created August 18, 2019 03:33
Show Gist options
  • Save brianc118/a71f6d41c4d105835f91d173f2f1cd5c to your computer and use it in GitHub Desktop.
Save brianc118/a71f6d41c4d105835f91d173f2f1cd5c to your computer and use it in GitHub Desktop.
Install sox 14.4.2 locally without root
#!/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