Last active
October 11, 2017 05:08
-
-
Save chrisjz/4bcb8debc67218304947ebd45e2f8cca to your computer and use it in GitHub Desktop.
Install LAME 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 | |
wget -O lame-3.99.5.tar.gz https://sourceforge.net/projects/lame/files/lame/3.99/lame-3.99.5.tar.gz/download | |
tar -xvf lame-3.99.5.tar.gz | |
rm lame-3.99.5.tar.gz | |
cd lame-3.99.5 | |
./configure | |
make | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment