Alien-Libjio
view release on metacpan or search on metacpan
use Config '%Config';
$make = $Config{make};
# Probe for GNU Make (useful on BSD/Unix variants)
if ($make eq 'make' && grep { -x $_ . '/gmake' } @PATH) {
$make = 'gmake';
warn 'your system is a BSD variant but gmake was not found'
if ($^O =~ /bsd$/);
}
}
$make = $builder->prompt('What is your system "make" command?', $make);
$builder->notes(make => $make);
# Figure out if we should do a full install
my $extra = $builder->y_n('libjio includes other files including Python ' .
'bindings. Install them too?', 'n');
$builder->notes(extra => $extra);
}
$builder->create_build_script();
Update LICENSE and README (no longer generate a readme, just
use a simple one)
1.0.2 2009-07-01
New upstream release: libjio 0.51 (release 2009-06-30)
Better detection with ENV{MAKE} (uses gmake if on BSD)
There are no Ruby bindings, so remove that from the Build.PL
prompt asking if they should be installed
1.0.1 2009-06-18
No longer enforce "one dot only" in filenames. This breaks
compatibility with OpenVMS.
Updated perlcriticrc with new preferences, removed "no critic"
stuff for those in Alien/Libjio.pm
Added limitation warnings
( run in 0.703 second using v1.01-cache-2.11-cpan-0b5f733616e )