homebrew-core/Formula/parrot.rb
Brett Koonce 2bf7629d03 parrot 5.0.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-19 20:03:56 -08:00

29 lines
877 B
Ruby

require 'formula'
class Parrot < Formula
homepage 'http://www.parrot.org/'
url 'ftp://ftp.parrot.org/pub/parrot/releases/supported/5.0.0/parrot-5.0.0.tar.bz2'
sha256 '40c7176059e4462c722511a29450a4b80867a8459e273b602fbeaac2a22457f9'
devel do
url 'ftp://ftp.parrot.org/pub/parrot/releases/devel/4.11.0/parrot-4.11.0.tar.bz2'
sha256 '0632ad0ca9557df391088bddbbc2608a4503adb5679dcbe62c065a73d4ce49de'
end
head 'https://github.com/parrot/parrot.git'
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"
# Don't install this file in HOMEBREW_PREFIX/lib
rm_rf lib/'VERSION'
end
end