From 0b41cb12d893453ae6043b34cf162adeafe078f0 Mon Sep 17 00:00:00 2001 From: Alex 'AdUser' Z Date: Tue, 12 May 2015 13:22:12 +1000 Subject: [PATCH] + Makefile.PL --- Makefile.PL | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile.PL diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..db5ea14 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,12 @@ +use ExtUtils::MakeMaker; + +WriteMakefile( + AUTHOR => ["Alex 'AdUser' Z "], + NAME => 'Text::Playlist', + ABSTRACT => 'Collection of modules for work with various playlist formats', + VERSION_FROM => 'lib/Text/Playlist.pm', + LICENSE => 'perl_5', + BUILD_REQUIRES => { + 'Test::More' => 0, + }, +);