homebrew-core/Formula/rakudo-star.rb
Squeeks 2c4af62130 Rakudo Star (Perl 6)
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-08-11 21:30:08 -07:00

19 lines
439 B
Ruby

require 'formula'
class RakudoStar <Formula
url 'http://cloud.github.com/downloads/rakudo/star/rakudo-star-2010.07.tar.gz'
homepage 'http://rakudo.org/'
md5 '3be6d0f4f9d8d1143b6c25768e8a7342'
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