homebrew-core/Formula/rakudo-star.rb
Austin Seipp 70ab59d422 rakudo-star 2011.04
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-06-01 07:11:41 -07:00

19 lines
435 B
Ruby

require 'formula'
class RakudoStar < Formula
url 'https://github.com/downloads/rakudo/star/rakudo-star-2011.04.tar.gz'
md5 '1c01a95e6fa459f8b3481da15a79b71b'
homepage 'http://rakudo.org/'
depends_on 'parrot'
def install
parrot_bin = Formula.factory('parrot').bin
system "perl Configure.pl --parrot-config=#{parrot_bin}/parrot_config"
system "make"
system "make install"
bin.install "perl6"
end
end