homebrew-core/Formula/parrot.rb

30 lines
947 B
Ruby
Raw Normal View History

require 'formula'
class Parrot <Formula
2010-02-07 19:07:32 +00:00
head 'bzr://https://launchpad.net/parrot/trunk'
2010-11-06 15:39:15 +00:00
url 'ftp://ftp.parrot.org/pub/parrot/releases/supported/2.9.1/parrot-2.9.1.tar.gz'
homepage 'http://www.parrot.org/'
2010-11-06 15:39:15 +00:00
md5 '5f68803d2a9f7488459337f0628ad8fc'
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",
"--without-opengl",
"--cc=#{ENV.cc}"
system "make"
system "make install"
l = %x{otool -L #{bin}/parrot}[/\S*blib\/lib\S*/]
%w{ops2c parrot parrot-nqp parrot-prove parrot_config parrot_debugger
parrot_nci_thunk_gen pbc_disassemble pbc_dump pbc_merge pbc_to_exe
}.each do |fn|
system "install_name_tool -change #{l} #{lib}/libparrot.dylib #{bin+fn}"
2009-10-03 16:54:32 +00:00
end
end
end