File: Makefile.PL

package info (click to toggle)
libbind-config-parser-perl 0.01-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 76 kB
  • sloc: perl: 98; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 264 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
use ExtUtils::MakeMaker;

WriteMakefile(
	'NAME'		=> 'BIND::Config::Parser',
	'VERSION_FROM'	=> 'lib/BIND/Config/Parser.pm',
	'PREREQ_PM'	=> {
		'Parse::RecDescent'	=> 0,
	},
	($] >= 5.005 ? (
		'AUTHOR'	=> 'Matt Dainty <matt@bodgit-n-scarper.com>',
	) : () ),
);