Created
November 24, 2012 23:32
-
-
Save eugenehp/4141808 to your computer and use it in GitHub Desktop.
preparation for libx264 compilation
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 | |
| echo "yasm installation script for Mac OS X 10.8.2" | |
| echo "you should have brew installed!" | |
| git clone git://github.com/yasm/yasm.git | |
| cd yasm | |
| brew install autoconf automake | |
| sh ./autogen.sh | |
| ./configure | |
| make | |
| echo 'Executing sudo make install, please type your password below:' | |
| sudo make install | |
| echo 'Finish!' |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
initial story was on https://www.mattparkinson.eu/ffmpeg-x264-mac-os-x-10-7/