homebrew-core/Formula/parrot.rb

22 lines
581 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Parrot < Formula
2011-05-27 05:02:55 +00:00
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/'
2010-07-29 21:06:21 +00:00
depends_on 'gmp' => :optional
depends_on 'icu4c' => :optional
depends_on 'pcre' => :optional
def install
2010-11-06 15:39:15 +00:00
system "perl", "Configure.pl", "--prefix=#{prefix}",
"--debugging=0",
"--cc=#{ENV.cc}"
system "make"
system "make install"
end
end