Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save panamantis/2a33fb8bbce7af971afe230f5d79ace6 to your computer and use it in GitHub Desktop.
Save panamantis/2a33fb8bbce7af971afe230f5d79ace6 to your computer and use it in GitHub Desktop.
Install sox on Amazon Linux
#!/bin/sh
mkdir sox
cd sox
wget http://sourceforge.net/projects/sox/files/sox/14.4.2/sox-14.4.2.tar.gz
tar xvfz sox-14.4.2.tar.gz
cd sox-14.4.2
./configure
make -s
make install
export PATH=$PATH:/usr/local/bin
sudo ldconfig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment