diff options
| author | Brett Koonce | 2014-05-20 23:38:04 -0700 |
|---|---|---|
| committer | Brett Koonce | 2014-05-21 12:00:34 -0700 |
| commit | ef70dc030b3e01f2656810345db57615ad5cb3e6 (patch) | |
| tree | 171a36e7aa83465fc74e96ae76a92d96ded14e5e /Library | |
| parent | 988c483840434d1a3de3224a16d500a1c916c122 (diff) | |
| download | homebrew-ef70dc030b3e01f2656810345db57615ad5cb3e6.tar.bz2 | |
rakudo-star 2014.04
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/rakudo-star.rb | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/Library/Formula/rakudo-star.rb b/Library/Formula/rakudo-star.rb index 4e5bfd4de..aa6ea6d2f 100644 --- a/Library/Formula/rakudo-star.rb +++ b/Library/Formula/rakudo-star.rb @@ -1,9 +1,9 @@ -require 'formula' +require "formula" class RakudoStar < Formula - homepage 'http://rakudo.org/' - url 'http://rakudo.org/downloads/star/rakudo-star-2014.03.tar.gz' - sha256 '6b285fb3fbbfa22f5986a2890cd0ca29de8efb3a60b2d60e948140c24320a994' + homepage "http://rakudo.org/" + url "http://rakudo.org/downloads/star/rakudo-star-2014.04.tar.gz" + sha256 "f4fc1e3193db0fa876978527011034a711fdf20a87ee10edbb2dc62958cfed6a" bottle do sha1 "8713766c33d97f16eba1764e3a89137d58fa4ee3" => :mavericks @@ -11,19 +11,19 @@ class RakudoStar < Formula sha1 "ad7b50e1e85f2552f89f1e5fbdf2741659b8763b" => :lion end - option 'with-jvm', 'Build also for jvm as an alternate backend.' + option "with-jvm", "Build also for jvm as an alternate backend." - conflicts_with 'parrot' + conflicts_with "parrot" - depends_on 'gmp' => :optional - depends_on 'icu4c' => :optional - depends_on 'pcre' => :optional - depends_on 'libffi' + depends_on "gmp" => :optional + depends_on "icu4c" => :optional + depends_on "pcre" => :optional + depends_on "libffi" def install libffi = Formula["libffi"] - ENV.remove 'CPPFLAGS', "-I#{libffi.include}" - ENV.prepend 'CPPFLAGS', "-I#{libffi.lib}/libffi-#{libffi.version}/include" + ENV.remove "CPPFLAGS", "-I#{libffi.include}" + ENV.prepend "CPPFLAGS", "-I#{libffi.lib}/libffi-#{libffi.version}/include" ENV.j1 # An intermittent race condition causes random build failures. if build.with? "jvm" |
