root/trunk/antimatter/tim/Bot-BasicBot/Build.PL
| Revision 53, 405 bytes (checked in by bkuhn, 9 months ago) |
|---|
| Line | |
|---|---|
| 1 | #!/usr/bin/perl |
| 2 | use warnings; |
| 3 | use strict; |
| 4 | |
| 5 | use Module::Build; |
| 6 | |
| 7 | Module::Build->new( |
| 8 | module_name => 'Bot::BasicBot', |
| 9 | license => 'perl', |
| 10 | requires => { |
| 11 | 'POE::Component::IRC' => '2', |
| 12 | 'POE' => '0.22', |
| 13 | 'Test::More' => '0.01', |
| 14 | 'Text::Wrap' => 0, |
| 15 | }, |
| 16 | create_makefile_pl => 'passthrough', |
| 17 | create_readme => 1, |
| 18 | )->create_build_script; |
| 19 |
Note: See TracBrowser for help on using the browser.