homebrew-core/Formula/parrot.rb

30 lines
877 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Parrot < Formula
homepage 'http://www.parrot.org/'
url 'ftp://ftp.parrot.org/pub/parrot/releases/supported/4.9.0/parrot-4.9.0.tar.bz2'
sha256 '638cba16b47bd5c6dfb4c9106f17961b0496d65c321279a16032ef6667d3ae4d'
2012-09-01 20:26:50 +00:00
devel do
url 'ftp://ftp.parrot.org/pub/parrot/releases/devel/4.11.0/parrot-4.11.0.tar.bz2'
sha256 '0632ad0ca9557df391088bddbbc2608a4503adb5679dcbe62c065a73d4ce49de'
2012-09-01 20:26:50 +00:00
end
head 'https://github.com/parrot/parrot.git'
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"
# Don't install this file in HOMEBREW_PREFIX/lib
rm_rf lib/'VERSION'
end
end