homebrew-core/Formula/rakudo-star.rb
Rob Hoelz c1ee418ac4 Rakudo Star 2012.12
Closes Homebrew/homebrew#16778.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-12-28 07:52:30 -08:00

32 lines
1 KiB
Ruby

require 'formula'
class RakudoStar < Formula
homepage 'http://rakudo.org/'
url 'http://rakudo.org/downloads/star/rakudo-star-2012.12.tar.gz'
sha256 'b5b673fe621c69ac7953a40e62f6a56a1563b97910f36efa68fc5d63a5320568'
depends_on 'gmp' => :optional
depends_on 'icu4c' => :optional
depends_on 'pcre' => :optional
depends_on 'libffi'
def install
libffi = Formula.factory("libffi")
ENV.remove 'CPPFLAGS', "-I#{libffi.include}"
ENV.prepend 'CPPFLAGS', "-I#{libffi.lib}/libffi-3.0.11/include"
ENV.j1 # An intermittent race condition causes random build failures.
system "perl", "Configure.pl", "--prefix=#{prefix}", "--gen-parrot"
system "make"
system "make install"
# move the man pages out of the top level into share.
mv "#{prefix}/man", share
end
def caveats; <<-EOS
Raukdo Star comes with its own specific version of Parrot. Installing the
Parrot formula along side the Rakudo Star formula will override a number
of the binaries (eg. parrot, nqp, winxed, etc.).
EOS
end
end