summaryrefslogtreecommitdiff
path: root/Makefile.PL
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL21
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-*' },
+);