homebrew-core/Formula/rakudo-star.rb
Robert Boone dfaa9f8c91 Update to the August build of rakudo-star
Signed-off-by: David Höppner <0xffea@gmail.com>
2010-09-01 17:40:09 +02:00

19 lines
439 B
Ruby

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