From: Graham B. <gb...@us...> - 2003-10-08 14:28:13
|
Update of /cvsroot/perl-ldap/asn In directory sc8-pr-cvs1:/tmp/cvs-serv3435 Modified Files: MANIFEST Makefile.PL Log Message: Use Module::Build to build Makefile and add SIGNATURE Index: MANIFEST =================================================================== RCS file: /cvsroot/perl-ldap/asn/MANIFEST,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- MANIFEST 12 May 2003 17:45:18 -0000 1.9 +++ MANIFEST 8 Oct 2003 14:28:08 -0000 1.10 @@ -1,11 +1,23 @@ ChangeLog MANIFEST +META.yml Makefile.PL OldChanges README +SIGNATURE examples/ldap examples/ldap-search examples/x509decode +inc/Module/Install.pm +inc/Module/Install/Base.pm +inc/Module/Install/Can.pm +inc/Module/Install/Fetch.pm +inc/Module/Install/Include.pm +inc/Module/Install/Makefile.pm +inc/Module/Install/Metadata.pm +inc/Module/Install/Win32.pm +inc/Test/Builder.pm +inc/Test/More.pm lib/Convert/ASN1.pm lib/Convert/ASN1.pod lib/Convert/ASN1/Debug.pm @@ -15,6 +27,7 @@ lib/Convert/ASN1/parser.pm mkparse parser.y +t/0-signature.t t/00prim.t t/01tag.t t/02seq.t Index: Makefile.PL =================================================================== RCS file: /cvsroot/perl-ldap/asn/Makefile.PL,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Makefile.PL 19 Apr 2001 23:00:46 -0000 1.3 +++ Makefile.PL 8 Oct 2003 14:28:08 -0000 1.4 @@ -1,31 +1,32 @@ -# This -*- perl -*- script makes the Makefile -# $Id$ +# -*- perl -*- -use 5.004; -use ExtUtils::MakeMaker; +use inc::Module::Install; -my @ppd; +name('Convert-ASN1'); +abstract('Convert between perl data structures and ASN.1 encoded packets'); +author('Graham Barr <gb...@cp...>'); +version_from('lib/Convert/ASN1.pm'); +license('perl'); -@ppd = ( - AUTHOR => 'Graham Barr <gb...@po...>', - ABSTRACT => 'Convert between perl data structures and ASN.1 encoded packets', -) if $] >= 5.00503; +clean_files(qw(y.tab.pl)); -WriteMakefile( - VERSION_FROM => 'lib/Convert/ASN1.pm', - NAME => 'Convert::ASN1', - clean => { FILES => 'y.tab.pl' }, - @ppd, -); +include_deps('Test::More', 5.004); + +check_nmake(); # check and download nmake.exe for Win32 + +&Makefile->write; +&Meta->write; sub MY::postamble { + return <<POSTAMBLE; -<<"EDQ"; +distdir : distsign run_byacc: \$(PERL) mkparse parser.y lib/Convert/ASN1/parser.pm -EDQ +POSTAMBLE + } |