File: Makefile.PL

package info (click to toggle)
libtest-prereq-perl 1.037-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 148 kB
  • ctags: 20
  • sloc: perl: 265; makefile: 20
file content (20 lines) | stat: -rw-r--r-- 395 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# $Id$
use ExtUtils::MakeMaker;

WriteMakefile
        (
        'NAME'      => 'Test::Prereq',
        'VERSION'   => '0.05',
 		'PREREQ_PM' => {
 			'HTTP::Size'      => 0,
  			},
        'PM'        => 
        	{
            'lib/Prereq.pm' => '$(INST_LIBDIR)/Prereq.pm',
            },
 
		depend => { Makefile => 't/test_manifest' },
        test   => { TESTS => $tests },
        );

0;