File: Makefile.PL

package info (click to toggle)
libdbix-xml-rdb-perl 0.05-8
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 88 kB
  • ctags: 26
  • sloc: perl: 320; makefile: 39
file content (13 lines) | stat: -rwxr-xr-x 414 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl

use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'	=> 'DBIx::XML_RDB',
    'VERSION_FROM' => 'XML_RDB.pm', # finds $VERSION
	'PREREQ_PM' => { DBI => "1.00" },
	'dist' => {'COMPRESS' => 'gzip', suffix => 'gz' },
	      'PM' =>
	      { 'XML_RDB.pm' => '$(INST_LIBDIR)/XML_RDB.pm' },
);