File: Build.PL

package info (click to toggle)
libhttp-server-simple-static-perl 0.14-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 96 kB
  • sloc: perl: 151; makefile: 2
file content (26 lines) | stat: -r-xr-xr-x 772 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
#!/usr/bin/perl
use strict;
use warnings;

use Module::Build;

Module::Build->new
    ( module_name => 'HTTP::Server::Simple::Static',
      dist_author => 'Stephen Quinney <sjq-perl@jadevine.org.uk>',
      license     => 'perl',
      create_makefile_pl => 'traditional',
      requires    => {
          'Cwd'                   => 0,
	  'CGI'                   => '3.46',
          'Exporter'              => 0,
          'File::LibMagic'        => 0,
          'File::Spec::Functions' => 0,
          'HTTP::Date'            => 0,
          'HTTP::Server::Simple'  => 0.01 ,
          'IO::File'              => 0,
          'URI::Escape'           => 0,
      },
      configure_requires => {
          'Module::Build' => '0.40'
      }, 
    )->create_build_script;