From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
1234567891011121314 #!/usr/bin/perl -wuse strict;use warnings;use ExtUtils::MakeMaker;WriteMakefile ( NAME => 'Convert::X509', AUTHOR => 'Leonid Cherepanov <grey.leo/gmail.com>', VERSION_FROM => 'lib/Convert/X509.pm', PREREQ_PM => { 'Convert::ASN1' => '0.22', },);
#!/usr/bin/perl -w
use
strict;
warnings;
ExtUtils::MakeMaker;
WriteMakefile (
NAME
=>
'Convert::X509'
,
AUTHOR
'Leonid Cherepanov <grey.leo/gmail.com>'
VERSION_FROM
'lib/Convert/X509.pm'
PREREQ_PM
=> {
'Convert::ASN1'
'0.22'
},
);