From f04ad0828f7d424b5959a34d976bc3a9329f37b8 Mon Sep 17 00:00:00 2001 From: Zubrikhin Alexey Date: Wed, 17 Jun 2015 17:29:53 +1000 Subject: [PATCH] * Makefile.PL --- Makefile.PL | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile.PL diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..0146b63 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,14 @@ +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Text::Dokuwiki', + AUTHOR => ["Alex 'AdUser' Z "], + ABSTRACT => 'set of modules to work with dokuwiki format', + VERSION => '0.01', + LICENSE => 'perl_5', + EXE_FILES => ['bin/dw2md'], + PREREQ_PM => { + 'Test::More' => 0, + }, +); +