|
Revision 53, 0.7 kB
(checked in by bkuhn, 9 months ago)
|
- Added SFLC's internally developed tim bot released under AGPLv3
|
| 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::Pluggable', |
|---|
| 9 |
license => 'perl', |
|---|
| 10 |
requires => { |
|---|
| 11 |
'perl' => '5.6.0', |
|---|
| 12 |
'Bot::BasicBot' => '0.30', |
|---|
| 13 |
'Test::More' => '0.01', |
|---|
| 14 |
'URI::Title' => '0.1', |
|---|
| 15 |
'URI::Find::Simple' => 0, |
|---|
| 16 |
'DBI' => 0, |
|---|
| 17 |
'DBD::SQLite' => 0, |
|---|
| 18 |
'Getopt::Long' => 0, |
|---|
| 19 |
'DBM::Deep' => 0, |
|---|
| 20 |
'XML::Feed' => 0, |
|---|
| 21 |
}, |
|---|
| 22 |
script_files => [ |
|---|
| 23 |
'bin/bot-basicbot-pluggable', |
|---|
| 24 |
], |
|---|
| 25 |
create_makefile_pl => 'passthrough', |
|---|
| 26 |
create_readme => 1, |
|---|
| 27 |
)->create_build_script; |
|---|
| 28 |
|
|---|