File: Makefile.PL

package info (click to toggle)
weblint 1.93-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 228 kB
  • ctags: 76
  • sloc: perl: 2,069; makefile: 56; sh: 8
file content (25 lines) | stat: -rw-r--r-- 537 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
#
# Makefile.PL for weblint 2
#
# Filename:     Makefile.PL
# Author:       Neil Bowers
# Created:      23 March 1999
#
# $Id: Makefile.PL,v 1.3 1999/04/05 15:40:07 neilb Exp $
#

use ExtUtils::MakeMaker;


&WriteMakefile(
		NAME          => 'Weblint',
		DISTNAME      => 'weblint',
		VERSION_FROM  => 'weblint',
                PREREQ_PM     => {
					'Getopt::Long'   => 0,
					'File::Find'     => 0,
                                 },
		EXE_FILES     => [qw(weblint)],
		dist          => {COMPRESS => 'gzip', SUFFIX => 'gz'},
		);