diff options
author | ivan <ivan> | 2008-08-11 07:38:09 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-08-11 07:38:09 +0000 |
commit | b5e00dd5534d7f6ec852b537f551bb872931fa04 (patch) | |
tree | 3091d93f430e74f823397559d324d7f4ce882f7d /Makefile.PL |
initial importSTART
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..cd7c009 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,21 @@ +use strict; +use warnings; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'HTML::AutoConvert', + AUTHOR => 'Ivan Kohler <ivan-html-autoconvert@420.am>', + VERSION_FROM => 'lib/HTML/AutoConvert.pm', + ABSTRACT_FROM => 'lib/HTML/AutoConvert.pm', + PL_FILES => {}, + 'EXE_FILES' => [ glob 'bin/*' ], + 'INSTALLSCRIPT' => '/usr/local/bin', + 'INSTALLSITEBIN' => '/usr/local/bin', + PREREQ_PM => { + 'Test::More' => 0, + 'IPC::Run' => 0, + 'File::Slurp' => 0, + }, + dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, + clean => { FILES => 'HTML-AutoConvert-*' }, +); |