File: Makefile.PL

package info (click to toggle)
net-hotline 0.78-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 356 kB
  • ctags: 351
  • sloc: perl: 4,265; makefile: 33
file content (27 lines) | stat: -rw-r--r-- 665 bytes parent folder | download | duplicates (6)
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 ExtUtils::MakeMaker;

unless($] >= 5.004)
{
  print<<"EOF";

       *** FATAL ERROR: TIME TO UPGRADE! ***

Net::Hotline requires Perl version 5.004 or higher.
The times, they are a-changing...

EOF

  exit(1);
}

WriteMakefile('NAME'         => 'Net::Hotline',
              'PMLIBDIRS'    => [ 'lib/Net/', 'lib/Net/Hotline',
                                  'lib/Net/Hotline/Protocol' ],
              'PREREQ_PM' =>
              {
                'IO::File'   => 0,
                'IO::Socket' => 0,
                'Carp'       => 0
              },
              'VERSION_FROM' => 'lib/Net/Hotline.pm',
              'dist' => { 'COMPRESS' => 'gzip' });