public
Description: Embedding Perl 6 into Perl 5 using Rakudo
Homepage:
Clone URL: git://github.com/szabgab/perl6-in-perl5.git
name age message
file .gitignore Sat Mar 28 11:57:14 -0700 2009 gitignore [szabgab]
file Changes Sat Mar 28 12:07:01 -0700 2009 add PARROT_DIR and RAKUDO_DIR requirement to Ma... [szabgab]
file MANIFEST.SKIP Mon Mar 23 14:51:02 -0700 2009 final changes before release to CPAN [szabgab]
file Makefile.PL Sat Mar 28 12:25:34 -0700 2009 update version number to 0.02, do not require t... [szabgab]
file README Wed Mar 25 13:17:22 -0700 2009 add instructions to built Parrot::Embed [szabgab]
directory lib/ Sat Mar 28 13:00:41 -0700 2009 further try to improve quoting [szabgab]
directory t/ Sat Mar 28 13:00:41 -0700 2009 further try to improve quoting [szabgab]
README
Perl 6 in Perl 5

After building Parrot and Rakudo I set the RAKUDO_DIR 
environment variable to point to the directory 
where Rakudo was checked out. I also set the PARROT_DIR 
environment variable to point to the directory 
where Parrot was checked out (in the currently standard setup
that would be $RAKUDO_DIR/parrot).

Then I had to build Parrot::Embed
cd $PARROT_DIR/ext/Parrot-Embed
perl Build.PL
perl Build
perl Build test

Then I set LD_LIBRARY_PATH to point to $PARROT_DIR/blib/lib/

This is what I have now in .bashrc

   export RAKUDO_DIR=$HOME/work/rakudo
   export PARROT_DIR=$RAKUDO_DIR/parrot
   export LD_LIBRARY_PATH=$PARROT_DIR/blib/lib/


Other than that

perl Makefile.PL
make
make test
make install