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
|
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/'
|
2013-02-20 00:23:05 +00:00
|
|
|
url 'ftp://ftp.parrot.org/pub/parrot/releases/supported/5.0.0/parrot-5.0.0.tar.bz2'
|
|
|
|
sha256 '40c7176059e4462c722511a29450a4b80867a8459e273b602fbeaac2a22457f9'
|
2012-07-30 22:30:02 +00:00
|
|
|
|
2012-09-01 20:26:50 +00:00
|
|
|
devel do
|
2013-09-17 17:12:01 +00:00
|
|
|
url 'ftp://ftp.parrot.org/pub/parrot/releases/devel/5.7.0/parrot-5.7.0.tar.bz2'
|
|
|
|
sha256 '73aacaecd81b7ef43689e9d23f641a690aabde524a2e60660d872dad82f7a337'
|
2012-09-01 20:26:50 +00:00
|
|
|
end
|
|
|
|
|
2012-07-30 22:30:02 +00:00
|
|
|
head 'https://github.com/parrot/parrot.git'
|
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
|
|
|
|
2013-06-11 20:04:13 +00:00
|
|
|
conflicts_with 'rakudo-star'
|
|
|
|
|
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
|
2013-02-20 19:23:41 +00:00
|
|
|
depends_on 'readline' => :optional
|
|
|
|
depends_on 'libffi' => :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}",
|
2013-07-17 17:10:33 +00:00
|
|
|
"--mandir=#{man}",
|
2010-11-06 15:39:15 +00:00
|
|
|
"--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"
|
2012-07-30 22:30:02 +00:00
|
|
|
# Don't install this file in HOMEBREW_PREFIX/lib
|
|
|
|
rm_rf lib/'VERSION'
|
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
|