File: Makefile.PL

package info (click to toggle)
libdbix-xml-rdb-perl 0.05-13
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 92 kB
  • sloc: perl: 319; makefile: 6
file content (12 lines) | stat: -rwxr-xr-x 389 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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
	'EXE_FILES' => ['sql2xml.pl', 'xml2sql.pl'],
	'PREREQ_PM' => { DBI => "1.00" },
	'dist' => {'COMPRESS' => 'gzip', suffix => 'gz' },
);