2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
Parrot formula
Parrot is a virtual machine designed to efficiently compile
and execute bytecode for dynamic languages. Parrot currently
hosts a variety of language implementations in various stages
of completion, including Tcl, Javascript, Ruby, Lua, Scheme,
PHP, Python, Perl 6, APL, and a .NET bytecode translator.
The parrot binary needs patching to find its library.
2009-10-03 13:06:46 +00:00
|
|
|
|
|
|
|
class Parrot <Formula
|
2010-02-07 19:07:32 +00:00
|
|
|
head 'bzr://https://launchpad.net/parrot/trunk'
|
2010-07-29 21:06:21 +00:00
|
|
|
url 'http://ftp.parrot.org/releases/supported/2.6.0/parrot-2.6.0.tar.bz2'
|
Parrot formula
Parrot is a virtual machine designed to efficiently compile
and execute bytecode for dynamic languages. Parrot currently
hosts a variety of language implementations in various stages
of completion, including Tcl, Javascript, Ruby, Lua, Scheme,
PHP, Python, Perl 6, APL, and a .NET bytecode translator.
The parrot binary needs patching to find its library.
2009-10-03 13:06:46 +00:00
|
|
|
homepage 'http://www.parrot.org/'
|
2010-07-29 21:06:21 +00:00
|
|
|
md5 'bae6db3abbf690a9b2f135136bb7cfd5'
|
Parrot formula
Parrot is a virtual machine designed to efficiently compile
and execute bytecode for dynamic languages. Parrot currently
hosts a variety of language implementations in various stages
of completion, including Tcl, Javascript, Ruby, Lua, Scheme,
PHP, Python, Perl 6, APL, and a .NET bytecode translator.
The parrot binary needs patching to find its library.
2009-10-03 13:06:46 +00:00
|
|
|
|
2010-07-29 21:06:21 +00:00
|
|
|
depends_on 'gmp' => :optional
|
2010-06-15 15:17:56 +00:00
|
|
|
depends_on 'icu4c' => :optional
|
|
|
|
depends_on 'pcre' => :optional
|
Parrot formula
Parrot is a virtual machine designed to efficiently compile
and execute bytecode for dynamic languages. Parrot currently
hosts a variety of language implementations in various stages
of completion, including Tcl, Javascript, Ruby, Lua, Scheme,
PHP, Python, Perl 6, APL, and a .NET bytecode translator.
The parrot binary needs patching to find its library.
2009-10-03 13:06:46 +00:00
|
|
|
|
|
|
|
def install
|
2010-02-20 11:53:51 +00:00
|
|
|
system "perl", "Configure.pl", "--prefix=#{prefix}", "--debugging=0",
|
|
|
|
"--without-opengl", "--cc=#{ENV.cc}"
|
2010-06-15 15:17:56 +00:00
|
|
|
|
2009-12-02 15:06:01 +00:00
|
|
|
system "make"
|
Parrot formula
Parrot is a virtual machine designed to efficiently compile
and execute bytecode for dynamic languages. Parrot currently
hosts a variety of language implementations in various stages
of completion, including Tcl, Javascript, Ruby, Lua, Scheme,
PHP, Python, Perl 6, APL, and a .NET bytecode translator.
The parrot binary needs patching to find its library.
2009-10-03 13:06:46 +00:00
|
|
|
system "make install"
|
|
|
|
|
2009-12-02 15:06:01 +00:00
|
|
|
l = %x{otool -L #{bin}/parrot}[/\S*blib\/lib\S*/]
|
2010-06-15 15:17:56 +00:00
|
|
|
%w{ops2c parrot parrot-nqp parrot-prove parrot_config parrot_debugger
|
|
|
|
parrot_nci_thunk_gen pbc_disassemble pbc_dump pbc_merge pbc_to_exe
|
2010-06-11 18:06:47 +00:00
|
|
|
}.each do |fn|
|
2009-12-02 15:06:01 +00:00
|
|
|
system "install_name_tool -change #{l} #{lib}/libparrot.dylib #{bin+fn}"
|
2009-10-03 16:54:32 +00:00
|
|
|
end
|
Parrot formula
Parrot is a virtual machine designed to efficiently compile
and execute bytecode for dynamic languages. Parrot currently
hosts a variety of language implementations in various stages
of completion, including Tcl, Javascript, Ruby, Lua, Scheme,
PHP, Python, Perl 6, APL, and a .NET bytecode translator.
The parrot binary needs patching to find its library.
2009-10-03 13:06:46 +00:00
|
|
|
end
|
|
|
|
end
|