File: Makefile.PL

package info (click to toggle)
libhttp-daemon-ssl-perl 1.05-01-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 824 kB
  • sloc: perl: 190; makefile: 19; sh: 2
file content (18 lines) | stat: -rw-r--r-- 473 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# A Makemaker script to build HTTP::Daemon::SSL
#
use ExtUtils::MakeMaker;

# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
  'NAME'	=> 'HTTP::Daemon::SSL',
  'VERSION_FROM' => 'SSL.pm',
  'DISTNAME' => 'HTTP-Daemon-SSL',
  'PREREQ_PM' => {
      'HTTP::Daemon' => 1.0,
      'IO::Socket::SSL' => 0.93,
      'Test::More' => 0,
     },
  'dist' => { COMPRESS => 'gzip', SUFFIX => 'gz', },
);