-
Notifications
You must be signed in to change notification settings - Fork 7
/
Makefile.PL
28 lines (28 loc) · 929 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
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'XML::Sig',
'VERSION_FROM' => 'lib/XML/Sig.pm',
'ABSTRACT' => "An XML Digital Signature Toolkit",
'AUTHOR' => 'Byrne Reese <[email protected]>',
'DISTNAME' => 'XML-Sig',
'LICENSE' => 'perl',
'LIBS' => [''], # e.g., '-lm'
'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
'INC' => '', # e.g., '-I/usr/include/other'
'PREREQ_PM' => {
'Test::Exception' => 0,
'File::Which' => 0,
'Class::Accessor' => 0,
'XML::XPath' => 0,
'Digest::SHA1' => 0,
'MIME::Base64' => 0,
'Crypt::OpenSSL::Bignum' => 0,
'Crypt::OpenSSL::X509' => 0,
'Crypt::OpenSSL::RSA' => 0,
'Crypt::OpenSSL::DSA' => 0,
'XML::CanonicalizeXML' => 0,
},
);
__END__