File: Makefile.PL

package info (click to toggle)
libflickr-api-perl 0.09-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 68 kB
  • ctags: 17
  • sloc: perl: 200; makefile: 8
file content (15 lines) | stat: -rw-r--r-- 314 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use ExtUtils::MakeMaker;

WriteMakefile(
    'NAME'		=> 'Flickr::API',
    'VERSION_FROM'	=> 'lib/Flickr/API.pm',
    'PREREQ_PM'		=> {
		'LWP::UserAgent' => 0,
		'HTTP::Request' => 0,
		'HTTP::Response' => 0,
		'URI' => 1.18,
		'XML::Parser::Lite::Tree' => 0.03,
		'Digest::MD5' => 0,
		'Test::More' => 0,
	},
);