summaryrefslogtreecommitdiff
path: root/Makefile.PL
diff options
context:
space:
mode:
authorJonathan "Duke" Leto <jonathan@leto.net>2011-01-03 14:00:22 -0800
committerJonathan "Duke" Leto <jonathan@leto.net>2011-01-03 14:00:22 -0800
commit792eeecfec9b9b30101fa5c791554b6affb5f0d0 (patch)
treed3e835deef556269479be29e596a01e110ebc825 /Makefile.PL
parentupdate .gitignore (diff)
downloadjitterbug-792eeecfec9b9b30101fa5c791554b6affb5f0d0.tar.gz
Convert jitterbug to use Module::Build
Jitterbug now uses Module::Build, mostly so that "./Build installdeps" can be used to install all Jitterbug dependencies. The README has been updated to document the new installation process. A Makefile.PL is still generated for backcompat.
Diffstat (limited to '')
-rw-r--r--Makefile.PL31
1 files changed, 0 insertions, 31 deletions
diff --git a/Makefile.PL b/Makefile.PL
deleted file mode 100644
index 880131b..0000000
--- a/Makefile.PL
+++ /dev/null
@@ -1,31 +0,0 @@
-use strict;
-use warnings;
-use ExtUtils::MakeMaker;
-
-WriteMakefile(
- NAME => 'jitterbug',
- AUTHOR => q{franck cuny <franck@lumberjaph.net>},
- VERSION_FROM => 'lib/jitterbug.pm',
- ABSTRACT => 'perl/github smoker',
- ( $ExtUtils::MakeMaker::VERSION >= 6.3002
- ? ( 'LICENSE' => 'perl' )
- : () ),
- PL_FILES => {},
- PREREQ_PM => {
- 'Test::More' => 0,
- 'YAML' => 0,
- 'Dancer' => 1.1810,
- 'XML::Feed' => 0,
- 'DateTime' => 0,
- 'JSON' => 0,
- 'Git::Repository' => 0,
- 'YAML' => 0,
- 'Dancer::Template::Xslate' => 0,
- 'Dancer::Plugin::DBIC' => 0,
- 'DBIx::Class' => 0,
- 'SQL::Translator' => 0,
- 'Digest::MD5' => 0,
- },
- dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
- clean => { FILES => 'jitterbug-*' },
-);