Alien-scriptaculous
view release on metacpan or search on metacpan
use strict;
use warnings;
use lib qw(inc lib);
use MY::Build;
MY::Build->new(
'module_name' => 'Alien::scriptaculous',
'license' => 'perl',
'dist_author' => 'Graham TerMarsch (cpan@howlingfrog.com)',
'create_makefile_pl'=> 'passthrough',
'requires' => {
'perl' => '5.6.0',
'Alien::Prototype' => '1.6.0',
Makefile.PL view on Meta::CPAN
# Save this 'cause CPAN will chdir all over the place.
my $cwd = Cwd::cwd();
CPAN::Shell->install('Module::Build::Compat');
CPAN::Shell->expand("Module", "Module::Build::Compat")->uptodate
or die "Couldn't install Module::Build, giving up.\n";
chdir $cwd or die "Cannot chdir() back to $cwd: $!";
}
eval "use Module::Build::Compat 0.02; 1" or die $@;
use lib 'inc';
Module::Build::Compat->run_build_pl(args => \@ARGV);
my $build_script = 'Build';
$build_script .= '.com' if $^O eq 'VMS';
exit(0) unless(-e $build_script); # cpantesters convention
require MY::Build;
Module::Build::Compat->write_makefile(build_class => 'MY::Build');
( run in 0.254 second using v1.01-cache-2.11-cpan-87723dcf8b7 )