Upgrade rakudo-star to version 2012.05.
Adjust `CPPFLAGS` to correctly locate the libffi includes.
Add `ENV.j1` to stop intermittent race conditions when compiling.
Add code to move the man pages into share because there's no
configure option for that.
Tested on Lion using clang and llvm from XCode-4.3.3.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
When interpolating in strings passed to Formula#system, it should be
done in such a way that if any interpolated variables contain spaces,
they are either (a) passed as part of a list or (b) protected by quotes
if they are part of a long string (which is subject to shell expansion).
Otherwise, they will be split on the space when expanded by the shell
and passed as multiple arguments to whatever process is being executed.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Rakudo Star comes with its own version of Parrot that is designed to match the
target release of rakudo, so I am removing the Parrot dependency and having it
build against packages version of Parrot.
Also, having it install all of the tools, this includes parrot, nqp, and all
of the modules that come with Rakudo Star instead of just installing the perl6
executable.
Also added caveat about installing parrot and rakudo side by side.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>