Created
March 7, 2014 15:53
-
-
Save rummelonp/9414099 to your computer and use it in GitHub Desktop.
mozjpeg を自前でコンパイルした上で homebrew 管理下に置く
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
brew install autoconf | |
brew install automake | |
brew install libtool | |
brew install nasm | |
brew install apple-gcc42 | |
cd /usr/local/src/ | |
git clone [email protected]:mozilla/mozjpeg.git | |
cd mozjpeg/ | |
git checkout v1.0 | |
autoreconf -fiv | |
./configure --prefix=/usr/local/Cellar/mozjpeg/1.0.0/ | |
make | |
make install | |
brew link mozjpeg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment