use strict; use vars qw{$VERSION}; BEGIN { require 5.003_96; $VERSION = '2.12'; } use ExtUtils::MakeMaker; WriteMakefile( NAME => 'Config::Tiny', ABSTRACT => 'Read/Write .ini style files with as little code as possible', VERSION => $VERSION, PREREQ_PM => { # Skip on Windows to avoid breaking ActivePerl PPMs # 0.47 means 5.6.2 or newer, which everyone on Win32 has. ($^O eq 'MSWin32' ? () : ('Test::More' => '0.47')), }, ($] >= 5.005 ? ( AUTHOR => 'Adam Kennedy ', ) : ()), ($ExtUtils::MakeMaker::VERSION ge '6.30_00' ? ( LICENSE => 'perl', ) : ()), );