Skip to content

Instantly share code, notes, and snippets.

@koorchik
Created January 5, 2012 16:51
Show Gist options
  • Select an option

  • Save koorchik/1566091 to your computer and use it in GitHub Desktop.

Select an option

Save koorchik/1566091 to your computer and use it in GitHub Desktop.
Makefile example
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'MyApp',
VERSION => 0.01,
MIN_PERL_VERSION => 5.010,
PREREQ_PM => {
'Mojolicious' => 2.41,
'Mojolicious::Plugin::YamlConfig' => 0,
'Mojolicious::Plugin::Recaptcha' => 0.3,
'Mojolicious::Plugin::JSUrlFor' => 0.06,
'Mojolicious::Plugin::CSRFProtect' => 0.07,
'DBI' => 1.38,
'DBD::mysql' => 4.016,
'Rose::DB::Object' => 0.797,
'YAML::Syck' => 1.05,
'Locale::Maketext::Lexicon' => 0.82,
'Email::Valid' => 0.184,
'MIME::Lite' => 0,
'Try::Tiny' => 0,
'Test::Most' => 0,
'Locale::PO' => 0,
'Validate::Tiny' => 0.09,
'Text::CSV' => 1.21,
'List::MoreUtils' => 0.32,
'Math::Round' => 0.06,
'Mouse' => 0.97,
'Log::Log4perl' => 1.28,
'File::Slurp' => 0,
},
PREREQ_PRINT => 1,
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'MyApp-*' },
test => { TESTS => 't/*.t' },
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment