rakudo-star: fix nits

This commit is contained in:
Dominyk Tiller 2015-07-05 07:08:10 +01:00
parent 3daf556945
commit 73a60f6af6

View file

@ -1,5 +1,3 @@
require "formula"
class RakudoStar < Formula
desc "Perl 6 compiler"
homepage "http://rakudo.org/"
@ -31,12 +29,11 @@ class RakudoStar < Formula
backends = ["moar"]
generate = ["--gen-moar"]
if build.with? "jvm"
backends << "jvm"
end
backends << "jvm" if build.with? "jvm"
system "perl", "Configure.pl", "--prefix=#{prefix}", "--backends=" + backends.join(","), *generate
system "make"
system "make install"
system "make", "install"
# Move the man pages out of the top level into share.
# Not all backends seem to generate man pages at this point (moar does not, parrot does),