root/trunk/Makefile.PL

Revision 145, 371 bytes (checked in by miyagawa, 15 months ago)

move failing pod tests to xt directory

Line 
1# $Id$
2
3use 5.008;
4use inc::Module::Install;
5
6name('TheSchwartz');
7version_from('lib/TheSchwartz.pm');
8author('Six Apart <cpan@sixapart.com>');
9license('perl');
10
11requires('Data::ObjectDriver' => '0.04');
12requires('Digest::MD5');
13requires('Storable');
14
15tests( -e "inc/.author" ? "t/*.t xt/*.t" : "t/*.t" );
16
17install_script('bin/schwartzmon');
18
19auto_install();
20WriteAll();
Note: See TracBrowser for help on using the browser.