52 lines
1.8 KiB
Ruby
52 lines
1.8 KiB
Ruby
class RakudoStar < Formula
|
|
desc "Perl 6 compiler"
|
|
homepage "http://rakudo.org/"
|
|
url "https://rakudo.perl6.org/downloads/star/rakudo-star-2017.07.tar.gz"
|
|
sha256 "c8558f619d440add88120387cf9447b5b795532c69ba27e07af0cc69a5e350b3"
|
|
|
|
bottle do
|
|
sha256 "4e31d5b909b4cb378fa9d7954eb441d0d6d87634cb441ebe47be7c367f94c37f" => :sierra
|
|
sha256 "23e2b96d1edc0f41a1957d2233475169c711470b6181c9a52ec9d20d9ca040e7" => :el_capitan
|
|
sha256 "f3c595ddda395ab96d36723acf939250bd597fbce98276c7e7547916d8b515b9" => :yosemite
|
|
end
|
|
|
|
option "with-jvm", "Build also for jvm as an alternate backend."
|
|
|
|
depends_on "gmp" => :optional
|
|
depends_on "icu4c" => :optional
|
|
depends_on "pcre" => :optional
|
|
depends_on "libffi"
|
|
|
|
conflicts_with "parrot"
|
|
|
|
def install
|
|
libffi = Formula["libffi"]
|
|
ENV.remove "CPPFLAGS", "-I#{libffi.include}"
|
|
ENV.prepend "CPPFLAGS", "-I#{libffi.lib}/libffi-#{libffi.version}/include"
|
|
|
|
ENV.deparallelize # An intermittent race condition causes random build failures.
|
|
|
|
backends = ["moar"]
|
|
generate = ["--gen-moar"]
|
|
|
|
backends << "jvm" if build.with? "jvm"
|
|
|
|
system "perl", "Configure.pl", "--prefix=#{prefix}", "--backends=" + backends.join(","), *generate
|
|
system "make"
|
|
system "make", "install"
|
|
|
|
# Panda is now in share/perl6/site/bin, so we need to symlink it too.
|
|
bin.install_symlink Dir[share/"perl6/site/bin/*"]
|
|
|
|
# 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),
|
|
# so we need to check if the directory exists first.
|
|
mv "#{prefix}/man", share if File.directory?("#{prefix}/man")
|
|
end
|
|
|
|
test do
|
|
out = `#{bin}/perl6 -e 'loop (my $i = 0; $i < 10; $i++) { print $i }'`
|
|
assert_equal "0123456789", out
|
|
assert_equal 0, $CHILD_STATUS.exitstatus
|
|
end
|
|
end
|