## This Makefile.PL script authored by SOMIAN, not by RUBYKAT. ## Last modified: 18 Oct 2008 16:56:22 EDT require 5.008.001; use ExtUtils::MakeMaker; use strict; use warnings; my %Pkg = ( NAME => 'HTML::TextToHTML', DISTNAME => 'txt2html', VERSION_FROM => 'scripts/txt2html', AUTHOR => 'Kathryn Andersen (rubykat@cpan.org)', ABSTRACT => 'convert plain text file to HTML', ((ExtUtils::MakeMaker->VERSION() gt '6.30') ? ('LICENSE' => 'perl') : ()), PREREQ_PM => { 'Test::More' => 0, 'Getopt::ArgvFile' => 0, 'File::Basename' => 0, 'Pod::Usage' => 0, 'YAML::Syck' => 0, }, NEEDS_LINKING => 0, PL_FILES => {}, ); WriteMakefile( %Pkg ); __END__