homebrew-core/Formula/parrot.rb

35 lines
1.0 KiB
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/5.0.0/parrot-5.0.0.tar.bz2'
sha256 '40c7176059e4462c722511a29450a4b80867a8459e273b602fbeaac2a22457f9'
2012-09-01 20:26:50 +00:00
devel do
url 'ftp://ftp.parrot.org/pub/parrot/releases/devel/5.6.0/parrot-5.6.0.tar.bz2'
sha256 '5cd1a7d413eee32fa9d1218b8475d810fbc7a80c4112a5590c8b060255f95fd7'
2012-09-01 20:26:50 +00:00
end
head 'https://github.com/parrot/parrot.git'
conflicts_with 'rakudo-star'
2010-07-29 21:06:21 +00:00
depends_on 'gmp' => :optional
depends_on 'icu4c' => :optional
depends_on 'pcre' => :optional
depends_on 'readline' => :optional
depends_on 'libffi' => :optional
def install
2010-11-06 15:39:15 +00:00
system "perl", "Configure.pl", "--prefix=#{prefix}",
2013-07-17 17:10:33 +00:00
"--mandir=#{man}",
2010-11-06 15:39:15 +00:00
"--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