File: Makefile.PL

package info (click to toggle)
libdevice-gsm-perl 1.61-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 504 kB
  • sloc: perl: 3,264; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 798 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
use strict;
use warnings;

use 5.008;
use ExtUtils::MakeMaker;
WriteMakefile(
    'ABSTRACT_FROM' => 'lib/Device/Gsm.pm',
    'AUTHOR'        => 'Cosimo Streppone <cosimo@cpan.org>, Grzegorz Woźniak <wozniakg@gmail.com>',
    'NAME'          => 'Device::Gsm',
    'VERSION_FROM'  => 'lib/Device/Gsm.pm', # finds $VERSION
    'PREREQ_PM'     => {
        'Test::More'    => 0,
        'Device::Modem' => 1.47,
        ( ( ($^O =~ /Win/i) && (! ($^O =~ /darwin/i)) )
            ? ( 'Win32::SerialPort' => 0 )
            : ( 'Device::SerialPort'=> 0 )
        )
    },
    'LICENSE' => 'perl',
    'META_MERGE' => {
        resources => {
            repository => 'git://github.com/cosimo/perl5-device-gsm.git',
            bugtracker => 'mailto:bug-device-gsm@rt.cpan.org',
        },
    },
);