SMS-OVH

SMS::OVH - Send SMS using OVH API (https://api.ovh.com/)
git clone https://git.e1e0.net/SMS-OVH.git
Log | Files | Refs | README

Makefile.PL (987B)


      1 use 5.006;
      2 use strict;
      3 use warnings;
      4 use ExtUtils::MakeMaker;
      5 
      6 WriteMakefile(
      7     NAME             => 'SMS::OVH',
      8     AUTHOR           => q{Paco Esteban <paco@onna.be>},
      9     VERSION_FROM     => 'lib/SMS/OVH.pm',
     10     ABSTRACT_FROM    => 'lib/SMS/OVH.pm',
     11     LICENSE          => 'bsd',
     12     PL_FILES         => {},
     13     MIN_PERL_VERSION => 5.006,
     14     CONFIGURE_REQUIRES => {
     15         'ExtUtils::MakeMaker' => 0,
     16     },
     17     BUILD_REQUIRES => {
     18         'Test::More' => 0,
     19     },
     20     PREREQ_PM => {
     21         'OvhApi' => 0,
     22         'Moose' => 0,
     23         'namespace::autoclean' => 0
     24     },
     25     META_MERGE => {
     26         "meta-spec" => { version => 2 },
     27         resources => {
     28             repository => {
     29                 type => 'git',
     30                 url => 'https://github.com/pacoesteban/SMS-OVH.git',
     31                 web => 'https://github.com/pacoesteban/SMS-OVH'
     32             }
     33         }
     34     },
     35     dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
     36     clean => { FILES => 'SMS-OVH-*' },
     37 );