# 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 terms of the Artistic License. # load module use ExtUtils::MakeMaker; # the package requires modern perl require 5.00503; my $version='0.452'; # 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, File::Temp => 0.12, Getopt::Long => 2.24, IO::File => 1, Pod::Simple => 3.02, Storable => 1, Test::Harness => 1.25, Test::More => 0.11, }, dist => { COMPRESS => 'gzip -9', SUFFIX => 'tgz', }, EXE_FILES => ['demo/pp2sdf', 'demo/perlpoint'], ); # provide additional informations warn <