-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
42 lines (39 loc) · 1006 Bytes
/
Makefile.PL
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
32
33
34
35
36
37
38
39
40
41
#!perl
use strict;
use warnings;
use v5.12;
use Config;
use ExtUtils::MakeMaker v6.46;
WriteMakefile
(
NAME => "PerlIO::win32console",
VERSION_FROM => "win32console_pm.PL",
LICENSE => "perl_5",
AUTHOR => 'Tony Cook >[email protected]>',
PL_FILES => { 'win32console_pm.PL' => 'win32console.pm' },
PM => {'win32console.pm' => '$(INST_LIBDIR)/win32console.pm'},
#CCFLAGS => "$Config{ccflags} -Wall -Wextra",
ABSTRACT => 'Win32 console output layer',
META_MERGE =>
{
'meta-spec' =>
{
version => "2",
url => "https://metacpan.org/pod/CPAN::Meta::Spec",
},
resources =>
{
homepage => "https://github.com/tonycoz/perlio-win32console",
repository =>
{
type => "git",
url => "https://github.com/tonycoz/perlio-win32console.git",
web => "https://github.com/tonycoz/perlio-win32console",
},
bugtracker =>
{
web => "https://github.com/tonycoz/perlio-win32console.git",
},
},
},
);