homebrew-core/Formula/parrot.rb
Martin Kühl c0955ed6f1 Updated formula: parrot version 3.0.0
Also:
* Manually fixing install_names is no longer required in version 3.0.0.
* Disabling OpenGL support doesn't seem to cause any trouble.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-02-21 12:02:52 -08:00

21 lines
578 B
Ruby

require 'formula'
class Parrot <Formula
head 'git://github.com/parrot/parrot.git'
url 'ftp://ftp.parrot.org/pub/parrot/releases/supported/3.0.0/parrot-3.0.0.tar.gz'
md5 'fc1d88114636eff4fe7953de456cecfa'
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