- You need to have the js interpreter installed
- [Install autoconf-2.13] (https://gist.github.com/devopstaku/9d00722f00a09042b2ae)
- Getting the latest SpiderMonkey source code from Git
- git clone https://github.com/mozilla/gecko-dev.git
- cd gecko-dev/js/src
- autoconf-2.13 ( Note that autoconf version 2.13 is required. No later version will work.)
- mkdir build_OPT.OBJ
- cd build_OPT.OBJ
- ../configure
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
| require 'formula' | |
| class Autoconf < Formula | |
| url 'http://ftp.gnu.org/gnu/autoconf/autoconf-2.13.tar.gz' | |
| homepage 'http://www.gnu.org/software/autoconf/' | |
| sha1 'e4826c8bd85325067818f19b2b2ad2b625da66fc' | |
| def install | |
| system "./configure", "--program-suffix=213", | |
| "--prefix=#{prefix}", | |
| "--infodir=#{info}" |
- place [
autoconf.rb] (https://gist.github.com/devopstaku/e9ecf61f8f530ac16c54#file-autoconf-rb) into Formula folder:/usr/local/Library/Formula/ - run
brew install autoconf
NewerOlder