|
Revision 285, 0.7 kB
(checked in by miya, 2 years ago)
|
import Net::Google::Calendar
|
- Property svn:executable set to
|
| Line | |
|---|
| 1 |
use strict; |
|---|
| 2 |
use Module::Build; |
|---|
| 3 |
|
|---|
| 4 |
my $build = Module::Build |
|---|
| 5 |
->new( module_name => "Net::Google::Calendar", |
|---|
| 6 |
license => 'perl', |
|---|
| 7 |
script_files => [ ], |
|---|
| 8 |
requires => { |
|---|
| 9 |
'LWP::UserAgent' => 0, |
|---|
| 10 |
'XML::Atom' => 0, |
|---|
| 11 |
'Test::More' => 0, |
|---|
| 12 |
'DateTime' => 0, |
|---|
| 13 |
'URI' => 0, |
|---|
| 14 |
}, |
|---|
| 15 |
recommended => { |
|---|
| 16 |
'Data::ICal' => '0.07', |
|---|
| 17 |
}, |
|---|
| 18 |
create_makefile_pl => 'traditional', |
|---|
| 19 |
); |
|---|
| 20 |
|
|---|
| 21 |
$build->create_build_script; |
|---|
| 22 |
|
|---|