forked from straup/p5-Net-Flickr-RDF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Build.PL
25 lines (22 loc) · 756 Bytes
/
Build.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# $Id: Build.PL,v 1.16 2008/02/08 08:03:17 asc Exp $
use strict;
use Module::Build;
my $build = Module::Build->new(module_name => 'Net::Flickr::RDF',
# dist_author
# dist_abstract
dist_version_from => 'lib/Net/Flickr/RDF.pm',
license => 'perl',
requires => {
'perl' => '5.8.0',
'Net::Flickr::API' => '1.7',
'RDF::Simple' => '0.22',
'Date::Parse' => '2.27',
'Date::Format' => '2.22',
'Readonly' => '0',
},
build_requires => {
'Test::Simple' => '0.47',
},
create_readme => 1,
create_makefile_pl => 'passthrough');
$build->create_build_script();