1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
DISTNAME => 'PostScript-File',
NAME => 'PostScript::File',
AUTHOR => "Christopher\ Willmot\ \<chris\@willmot\.co\.uk\>\,\ Christopher\ J\.\ Madsen\ \<perl\@cjmweb\.net\>",
ABSTRACT => "Base\ class\ for\ creating\ Adobe\ PostScript\ files",
VERSION => '1.05',
EXE_FILES => [ qw() ],
(eval { ExtUtils::MakeMaker->VERSION(6.31) } ? (LICENSE => 'perl') : ()),
PREREQ_PM => {
"File::Spec" => '0',
"File::Temp" => '0',
"Carp" => '0',
"Encode" => '0',
"Sys::Hostname" => '0',
},
test => {TESTS => 't/*.t'}
);
|