homebrew-core/Formula/parrot.rb
Austin Seipp 2a0f63f7da parrot 3.3.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-06-01 07:11:13 -07:00

21 lines
581 B
Ruby

require 'formula'
class Parrot < Formula
head 'https://github.com/parrot/parrot.git'
url 'ftp://ftp.parrot.org/pub/parrot/releases/supported/3.3.0/parrot-3.3.0.tar.gz'
md5 '335d50fbef245bfe6d0bb277e224c728'
homepage 'http://www.parrot.org/'
depends_on 'gmp' => :optional
depends_on 'icu4c' => :optional
depends_on 'pcre' => :optional
def install
system "perl", "Configure.pl", "--prefix=#{prefix}",
"--debugging=0",
"--cc=#{ENV.cc}"
system "make"
system "make install"
end
end