File: Makefile.PL

package info (click to toggle)
libdata-compare-perl 1.21-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 156 kB
  • ctags: 12
  • sloc: perl: 416; makefile: 15
file content (13 lines) | stat: -rw-r--r-- 430 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- mode: Perl -*-

use ExtUtils::MakeMaker qw(WriteMakefile);

WriteMakefile(NAME         => "Data::Compare",
              VERSION_FROM => "lib/Data/Compare.pm",
	      PREREQ_PM    => {
	          File::Find::Rule => 0.10,
		  Scalar::Util     => 0
              },
              dist         => { COMPRESS => "gzip", SUFFIX => "gz" },
	      clean        => { FILES => '*.bak *.old mibs/*.dump lib/*/*~' },
              );