1# This -*- perl -*- script writes the Makefile for this package.
2
3use strict;
4use ExtUtils::MakeMaker;
5
6WriteMakefile(
7  'NAME'	 => 'DateTime::Precise',
8  'VERSION_FROM' => 'lib/DateTime/Precise.pm', # finds $VERSION
9  'dist'         => {
10    'COMPRESS'   => 'gzip',
11    'SUFFIX'     => 'gz'
12  },
13);
14