Created
March 1, 2012 09:00
-
-
Save trevorsheridan/1948448 to your computer and use it in GitHub Desktop.
Installing LAME on Mac OSX Lion
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
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 |
Apparently, there is now a Homebrew formula that makes it super easy:
brew install lame
Greaaaaaat! Thanks for this :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Awesome! Thanks a ton for documenting this!