|
Revision 10289, 0.6 kB
(checked in by yusukebe, 7 months ago)
|
|
他のレポジトリから改めて移しました。CPANリリースのバージョンも含む。
|
| Line | |
|---|
| 1 | use strict; |
|---|
| 2 | use warnings; |
|---|
| 3 | use Module::Build; |
|---|
| 4 | |
|---|
| 5 | my $builder = Module::Build->new( |
|---|
| 6 | module_name => 'WWW::YourFileHost', |
|---|
| 7 | license => 'perl', |
|---|
| 8 | dist_author => 'Yusuke Wada <yusuke@kamawada.com>', |
|---|
| 9 | dist_version_from => 'lib/WWW/YourFileHost.pm', |
|---|
| 10 | requires => { |
|---|
| 11 | 'Test::More' => 0, |
|---|
| 12 | 'URI' => 0, |
|---|
| 13 | 'Web::Scraper' => 0, |
|---|
| 14 | 'URI::Escape' => 0, |
|---|
| 15 | 'LWP::UserAgent' => 0, |
|---|
| 16 | 'CGI' => 0, |
|---|
| 17 | }, |
|---|
| 18 | add_to_cleanup => [ 'WWW-YourFileHost-*' ], |
|---|
| 19 | ); |
|---|
| 20 | |
|---|
| 21 | $builder->create_build_script(); |
|---|