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
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Parrot < Formula
|
2010-12-05 15:26:29 +00:00
|
|
|
head 'git://github.com/parrot/parrot.git'
|
2011-02-16 18:14:25 +00:00
|
|
|
url 'ftp://ftp.parrot.org/pub/parrot/releases/supported/3.0.0/parrot-3.0.0.tar.gz'
|
|
|
|
md5 'fc1d88114636eff4fe7953de456cecfa'
|
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
|
|
|
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-11-06 15:39:15 +00:00
|
|
|
system "perl", "Configure.pl", "--prefix=#{prefix}",
|
|
|
|
"--debugging=0",
|
|
|
|
"--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"
|
|
|
|
end
|
|
|
|
end
|