diff options
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/Makefile.PL b/Makefile.PL index d1f0c2a..2fa285d 100644 --- a/Makefile.PL +++ b/Makefile.PL | |||
@@ -1,10 +1,10 @@ | |||
1 | use inc::Module::Install; | 1 | use inc::Module::Install; |
2 | 2 | ||
3 | name 'Monitoring-Plugin'; | 3 | name 'Monitoring-Plugin'; |
4 | all_from 'lib/Monitoring/Plugin/Functions.pm'; | 4 | all_from 'lib/Monitoring/Plugin/Functions.pm'; |
5 | author q{Monitoring Plugin Team <devel@monitoring-plugins.org>}; | 5 | author 'Monitoring Plugin Team <devel@monitoring-plugins.org>'; |
6 | license 'perl'; | 6 | license 'perl'; |
7 | repository 'https://github.com/monitoring-plugins/monitoring-plugin-perl'; | 7 | repository 'https://github.com/monitoring-plugins/monitoring-plugin-perl'; |
8 | 8 | ||
9 | requires 'Params::Validate' => 0; | 9 | requires 'Params::Validate' => 0; |
10 | requires 'Class::Accessor' => 0; | 10 | requires 'Class::Accessor' => 0; |
@@ -13,11 +13,9 @@ requires 'Config::Tiny' => 0; | |||
13 | requires 'File::Spec' => 0; | 13 | requires 'File::Spec' => 0; |
14 | requires 'File::Basename' => 0; | 14 | requires 'File::Basename' => 0; |
15 | requires 'IO::File' => 0; | 15 | requires 'IO::File' => 0; |
16 | requires 'Math::Calc::Units' => 0; # used in M::P::Performance | 16 | requires 'Math::Calc::Units' => 0; # used in M::P::Performance |
17 | 17 | ||
18 | 18 | ||
19 | build_requires 'Test::More' => 0.62; | 19 | build_requires 'Test::More' => 0.62; |
20 | 20 | ||
21 | auto_install; | ||
22 | |||
23 | WriteAll; | 21 | WriteAll; |