forked from neilb/Graph-ReadWrite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
32 lines (28 loc) · 1.05 KB
/
Copy pathMakefile.PL
File metadata and controls
32 lines (28 loc) · 1.05 KB
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
#
# Makefile.PL for Graph-ReadWrite
#
use ExtUtils::MakeMaker;
&WriteMakefile(
NAME => 'Graph-ReadWrite',
DISTNAME => 'Graph-ReadWrite',
ABSTRACT => 'Classes for reading and writing directed graphs',
AUTHOR => 'Neil Bowers <neil@bowers.com>',
VERSION => '2.04',
LICENSE => 'perl',
META_MERGE => {
resources => {
repository => 'https://github.com/neilbowers/Graph-ReadWrite',
},
},
PREREQ_PM => {
'IO::File' => 0,
'Graph' => 0.5,
'XML::Parser' => 0,
'XML::Writer' => 0,
'Parse::Yapp::Driver' => 0,
'parent' => 0,
'Carp' => 0,
'File::Compare' => 0,
},
dist => {COMPRESS => 'gzip', SUFFIX => 'gz'},
);