|
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 | |
|---|
| 1 | use inc::Module::Install; |
|---|
| 2 | |
|---|
| 3 | print <<EOTEXT; |
|---|
| 4 | |
|---|
| 5 | ****************************************************************************** |
|---|
| 6 | Other distributions might be needed as well, but they are not inclued in the |
|---|
| 7 | bundle. |
|---|
| 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 | |
|---|
| 14 | EOTEXT |
|---|
| 15 | |
|---|
| 16 | include 'Module::AutoInstall'; |
|---|
| 17 | |
|---|
| 18 | name 'Bundle-NICAT'; |
|---|
| 19 | all_from 'lib/Bundle/NICAT.pm'; |
|---|
| 20 | perl_version '5.006'; |
|---|
| 21 | |
|---|
| 22 | process_templates( |
|---|
| 23 | first_year => 2007, |
|---|
| 24 | rest_from => "$ENV{HOME}/.mitlib/standard_pod", |
|---|
| 25 | start_tag => '{%', |
|---|
| 26 | end_tag => '%}', |
|---|
| 27 | ); |
|---|
| 28 | |
|---|
| 29 | use_standard_tests(without => 'pod_coverage'); |
|---|
| 30 | auto_install; |
|---|
| 31 | auto_include; |
|---|
| 32 | WriteAll; |
|---|