Forked from trevorsheridan/Installing LAME on Mac OSX Lion
Created
November 10, 2016 21:09
-
-
Save EvanWieland/aeed538f6b0118d999ef7152500af926 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment