51 lines
1.5 KiB
Ruby
51 lines
1.5 KiB
Ruby
class Parrot < Formula
|
|
desc "Open source virtual machine (for Perl6, et al.)"
|
|
homepage "http://www.parrot.org/"
|
|
url "ftp://ftp.parrot.org/pub/parrot/releases/supported/6.9.0/parrot-6.9.0.tar.bz2"
|
|
sha256 "ad5f3723c216675b9ebc2e3d3807d24fd13aa55e1eb3e7ffcad4062e0026f482"
|
|
head "https://github.com/parrot/parrot.git"
|
|
|
|
bottle do
|
|
sha256 "6c03426ea421562a7ae6489c93423f047d5bc2cbc6f8e9fd5ad6ae48d3096d21" => :yosemite
|
|
sha256 "5f071956ca3f5ba7eab6b571bd9a77b059ed80af7ed1d5a8857aba5819f1ac0f" => :mavericks
|
|
sha256 "c6deb6d7f91f91aa426a1c5604f3c9684fee81261d570f1e3b852e4a194262a1" => :mountain_lion
|
|
end
|
|
|
|
conflicts_with "rakudo-star"
|
|
|
|
depends_on "gmp" => :optional
|
|
depends_on "icu4c" => :optional
|
|
depends_on "pcre" => :optional
|
|
depends_on "readline" => :optional
|
|
depends_on "libffi" => :optional
|
|
|
|
def install
|
|
system "perl", "Configure.pl", "--prefix=#{prefix}",
|
|
"--mandir=#{man}",
|
|
"--debugging=0",
|
|
"--cc=#{ENV.cc}"
|
|
|
|
system "make"
|
|
system "make", "install"
|
|
# Don't install this file in HOMEBREW_PREFIX/lib
|
|
rm_rf lib/"VERSION"
|
|
end
|
|
|
|
test do
|
|
path = testpath/"test.pir"
|
|
path.write <<-EOS.undent
|
|
.sub _main
|
|
.local int i
|
|
i = 0
|
|
loop:
|
|
print i
|
|
inc i
|
|
if i < 10 goto loop
|
|
.end
|
|
EOS
|
|
|
|
out = `#{bin}/parrot #{path}`
|
|
assert_equal "0123456789", out
|
|
assert_equal 0, $?.exitstatus
|
|
end
|
|
end
|