-
-
Save panamantis/2a33fb8bbce7af971afe230f5d79ace6 to your computer and use it in GitHub Desktop.
Install sox on Amazon Linux
This file contains hidden or 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/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