homebrew-core/Formula/parrot.rb
2010-02-20 12:12:51 +00:00

23 lines
750 B
Ruby

require 'formula'
class Parrot <Formula
head 'bzr://https://launchpad.net/parrot/trunk'
url 'ftp://ftp.parrot.org//pub/parrot/releases/stable/2.0.0/parrot-2.0.0.tar.gz'
homepage 'http://www.parrot.org/'
md5 'a28e09358a31ed93601deb8e5000a5f5'
depends_on 'pcre'
def install
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{parrot parrot-nqp parrot_config parrot_debugger pbc_disassemble
pbc_dump pbc_merge pbc_to_exe}.each do |fn|
system "install_name_tool -change #{l} #{lib}/libparrot.dylib #{bin+fn}"
end
end
end