Forked from trevorsheridan/Installing LAME on Mac OSX Lion
Last active
September 13, 2015 11:44
-
-
Save saiday/2c606fe1c5c4005110ba to your computer and use it in GitHub Desktop.
Installing LAME on Mac OSX Lion
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
Getting the Source | |
$ cd ~/source | |
$ curl -L -O http://downloads.sourceforge.net/project/lame/lame/3.99/lame-3.99.5.tar.gz | |
$ tar -zxvf lame-3.99.5.tar.gz | |
$ rm -r lame-3.99.5.tar.gz | |
$ cd lame-3.99.5 | |
Installing | |
$ ./configure | |
$ make | |
$ sudo make install | |
Checking if it was installed successfully | |
$ which lame | |
$ lame -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment