forked from BrightLedSigns/LedSign
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
32 lines (29 loc) · 869 Bytes
/
Makefile.PL
File metadata and controls
32 lines (29 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Note: this file was auto-generated by Module::Build::Compat version 0.4003
use 5.008001;
use ExtUtils::MakeMaker;
my $IS_WINDOWS = ($^O eq "MSWin32" or $^O eq "cygwin") ? 1 : 0;
my %SERIAL;
if ($IS_WINDOWS) {
%SERIAL=('Win32::SerialPort' => 0);
} else {
%SERIAL=('Device::SerialPort' => 0);
}
WriteMakefile
(
'NAME' => 'LedSign',
'VERSION_FROM' => 'lib/LedSign.pm',
'PREREQ_PM' => {
%SERIAL,
'Carp' => 0,
'POSIX' => 0,
},
'TEST_REQUIRES' => {
'Digest::MD5' => 0,
'Test::More' => 0
},
'INSTALLDIRS' => 'site',
'MIN_PERL_VERSION' => '5.008001',
'EXE_FILES' => [],
'PL_FILES' => {}
)
;