53 lines
1.4 KiB
Ruby
53 lines
1.4 KiB
Ruby
require "formula"
|
|
|
|
class Parrot < Formula
|
|
homepage "http://www.parrot.org/"
|
|
head "https://github.com/parrot/parrot.git"
|
|
url "ftp://ftp.parrot.org/pub/parrot/releases/supported/6.6.0/parrot-6.6.0.tar.bz2"
|
|
sha256 "08e9e02db952828f6ab71755be47f99ebc90894378f04d8e4d7f3bc623f79ff5"
|
|
revision 2
|
|
|
|
bottle do
|
|
sha1 "a75d61ac8c3576b0ae73bcda79c7bb9afc0349b8" => :mavericks
|
|
sha1 "8f2eb5a5809f06a4b89dced248610371031efbe9" => :mountain_lion
|
|
sha1 "94c28e045d3e66ddd08ea0bbbd8d85cc19704ff1" => :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
|