Created
October 11, 2017 05:25
-
-
Save chrisjz/6b71e6e67a407c43ffacbc252bb52c07 to your computer and use it in GitHub Desktop.
Install sox on Amazon Linux
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/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
It will on amazon linux 2. Not Amazon Linux 2023.