|
Revision 9726, 435 bytes
(checked in by hanekomu, 5 years ago)
|
r6017@nbgr: marcel | 2008-04-18 16:07:35 +0200
lang/perl/Acme-Tiroler: initial commit
|
| Line | |
|---|
| 1 | use inc::Module::Install; |
|---|
| 2 | include 'Module::AutoInstall'; |
|---|
| 3 | |
|---|
| 4 | name 'Acme-Tiroler'; |
|---|
| 5 | all_from 'lib/Acme/Tiroler.pm'; |
|---|
| 6 | perl_version '5.006'; |
|---|
| 7 | |
|---|
| 8 | requires 'Filter::Simple'; |
|---|
| 9 | |
|---|
| 10 | build_requires 'Test::More' => '0.70'; |
|---|
| 11 | |
|---|
| 12 | process_templates( |
|---|
| 13 | first_year => 2007, |
|---|
| 14 | rest_from => "$ENV{HOME}/.mitlib/standard_pod", |
|---|
| 15 | start_tag => '{%', |
|---|
| 16 | end_tag => '%}', |
|---|
| 17 | ); |
|---|
| 18 | |
|---|
| 19 | use_standard_tests(without => 'pod_coverage'); |
|---|
| 20 | auto_install; |
|---|
| 21 | auto_include; |
|---|
| 22 | WriteAll; |
|---|