diff options
Diffstat (limited to 'Library/Formula/spidermonkey.rb')
| -rw-r--r-- | Library/Formula/spidermonkey.rb | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/Library/Formula/spidermonkey.rb b/Library/Formula/spidermonkey.rb index a021b6ee8..2bce383cb 100644 --- a/Library/Formula/spidermonkey.rb +++ b/Library/Formula/spidermonkey.rb @@ -2,18 +2,26 @@ require 'formula' # Private older version of autoconf required to compile Spidermonkey class Autoconf213 < Formula + homepage 'http://www.gnu.org/software/autoconf/' url 'http://ftpmirror.gnu.org/autoconf/autoconf-2.13.tar.gz' mirror 'http://ftp.gnu.org/gnu/autoconf/autoconf-2.13.tar.gz' md5 '9de56d4a161a723228220b0f425dc711' - homepage 'http://www.gnu.org/software/autoconf/' end class Spidermonkey < Formula homepage 'https://developer.mozilla.org/en/SpiderMonkey' url 'http://ftp.mozilla.org/pub/mozilla.org/js/js185-1.0.0.tar.gz' - md5 'a4574365938222adca0a6bd33329cb32' version '1.8.5' + # Don't provide an md5 for the HEAD build + unless ARGV.build_head? + md5 'a4574365938222adca0a6bd33329cb32' + end + + # This is terribly, terribly slow the first time. + # head 'https://hg.mozilla.org/tracemonkey', :using => :hg + head 'https://hg.mozilla.org/tracemonkey/archive/tip.tar.gz', :using => :curl + depends_on 'readline' depends_on 'nspr' |
