Skip to content

Commit

Permalink
added Makefile.PL
Browse files Browse the repository at this point in the history
  • Loading branch information
mago0 authored and ironcamel committed Dec 8, 2011
1 parent 663def4 commit b6539ee
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
NAME => 'Postmail',
VERSION => 1.0,
PL_FILES => {},
PREREQ_PM => {
'Email::Sender' => 0,
'Email::Sender::Transport::SMTP::TLS' => 0,
'Email::Simple' => 0,
'Dancer::Plugin::Stomp' => 0,
'JSON Starman' => 0,
'Try::Tiny' => 0,
'YAML' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Postmail-*' },
test => { TESTS => join( ' ', (glob( 't/*.t'), glob('t/*/*.t')))},
);

0 comments on commit b6539ee

Please sign in to comment.