3 # Copyright (C) 2007-2008, Parrot Foundation.
8 Makefile.PL - CPAN installer passthrough to configure Parrot
12 This file exists only to allow users of a CPAN shell to configure and build
13 Parrot. If you're reading this yourself, use F<Configure.pl>
20 BEGIN { require 5.008 }
24 INSTALL_BASE => 'prefix',
33 my ($name, $value) = split /=/, $arg, 2;
34 next unless exists $translations{ $name };
35 push @commands, "--$name=$value";
38 system( $^X, 'Configure.pl', @commands );
42 # cperl-indent-level: 4
45 # vim: expandtab shiftwidth=4: