File: Makefile.PL

package info (click to toggle)
refdb-sru 0.7-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 136 kB
  • ctags: 30
  • sloc: perl: 1,048; makefile: 5
file content (15 lines) | stat: -rw-r--r-- 522 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
	      'NAME'	=> 'RefDB::SRU',
	      'VERSION_FROM' => 'SRU.pm', # finds $VERSION
	      'AUTHOR' => 'Markus Hoenicka <markus@mhoenicka.de>',
	      'PREREQ_PM' => {
		  'RefDB::Client' => '1.17',
		  'RefDB::Log' => '1.2',
		  'CQL::Parser' => '1.0',
		  'XML::Writer' => '0.600',
	      },
	      'dist' => { COMPRESS => 'gzip -9f', SUFFIX => '.tar.gz',}, 
	      );