# Makefile.PL -- Makefile template for PerlPoint::Parser # # This file is part of the "PerlPoint::Package" module package. # PerlPoint::Package is free software, you can redistribute it # and/or modify it under the same terms as Perl itself. # load module use ExtUtils::MakeMaker; # the package requires modern perl require 5.00503; my $version='0.37'; # write makefile $ok=WriteMakefile( NAME => 'PerlPoint::Package', ABSTRACT => 'A framework to write PerlPoint converters.', VERSION => $version, PREREQ_PM => { Digest::SHA1 => 1, File::Spec => 0.8, IO::File => 1, Storable => 1, Test::Harness => 1.25, Test::More => 0.11, }, dist => { COMPRESS => 'gzip -9', SUFFIX => 'tgz', }, EXE_FILES => ['demo/pp2sdf'], ); # provide additional informations warn <