Module::Install::PAR is a Perl module which provides Module::Install support for PAR::Dist packages.
SYNOPSIS
To offer your users the possibility to install binaries if no C compiler was found, you could use this simplistic stub:
use inc::Module::Install;
name 'Foo';
all_from 'lib/Foo.pm';
# Which CPAN directory do we fetch binaries from?
par_base 'SMUELLER';
unless ( can_cc() ) {
my $okay = extract_par( fetch_par );
if (not $okay) {
die "No compiler and no binary package found. Aborting.n";
}
}
WriteAll;
Product's homepage
Requirements:
· Perl