From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

use 5.10.0;
use strict;
my %prereqs_os_specific;
if ( $^O eq 'MSWin32' ) {
%prereqs_os_specific = (
'Encode' => 0,
'Encode::Locale' => 0,
'Win32::Console' => 0,
'Win32::Console::ANSI' => 0,
'Win32::Console::PatchForRT33513' => 0,
);
}
WriteMakefile(
PL_FILES => {},
MIN_PERL_VERSION => '5.10.0',
LICENSE => 'perl',
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
bugtracker => {
},
repository => {
type => 'git',
},
},
},
AUTHOR => 'Matthaeus Kiem <cuer2s@gmail.com>',
NAME => 'Term::Choose',
ABSTRACT_FROM => 'lib/Term/Choose.pm',
VERSION_FROM => 'lib/Term/Choose.pm',
EXE_FILES => [],
BUILD_REQUIRES => {
'lib' => 0,
'File::Spec::Functions' => 0,
'FindBin' => 0,
'Test::More' => 0,
'Test::Fatal' => 0,
},
PREREQ_PM => {
'constant' => 0,
'strict' => 0,
'warnings' => 0,
'Carp' => 0,
'Exporter' => 0,
%prereqs_os_specific,
},
test => {
TESTS => 't/*/*.t',
},
dist => {
COMPRESS => 'gzip',
SUFFIX => '.gz',
TARFLAGS => '--format=gnu -cvf',
},
clean => {
FILES => 'Term-Choose-*',
},
);