root/lang/perl/Bundle-NICAT/tags/Bundle-NICAT-0.04/Makefile.PL @ 9738

Revision 9738, 0.8 kB (checked in by hanekomu, 5 years ago)

r6043@nbgr: marcel | 2008-04-18 16:18:31 +0200
lang/perl/Bundle-NICAT: initial commit

Line 
1use inc::Module::Install;
2
3print <<EOTEXT;
4
5******************************************************************************
6Other distributions might be needed as well, but they are not inclued in the
7bundle.
8
9- mod_perl 2: not everyone needs this
10- DBD::Oracle: this needs manual configuration
11- XML::Xerces: this needs manual configuration
12******************************************************************************
13
14EOTEXT
15
16include 'Module::AutoInstall';
17
18name 'Bundle-NICAT';
19all_from 'lib/Bundle/NICAT.pm';
20perl_version '5.006';
21
22process_templates(
23    first_year => 2007,
24    rest_from  => "$ENV{HOME}/.mitlib/standard_pod",
25    start_tag  => '{%',
26    end_tag    => '%}',
27);
28
29use_standard_tests(without => 'pod_coverage');
30auto_install;
31auto_include;
32WriteAll;
Note: See TracBrowser for help on using the browser.