File: Makefile.PL

package info (click to toggle)
libweather-com-perl 0.5.0-3etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 344 kB
  • ctags: 148
  • sloc: perl: 3,509; makefile: 46; sh: 11
file content (29 lines) | stat: -rw-r--r-- 763 bytes parent folder | download | duplicates (2)
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
26
27
28
29
use 5.006;
use ExtUtils::MakeMaker;

# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
	NAME    => 'Weather::Com',
	VERSION => '0.5',       # sets $VERSION
	PREREQ_PM => {
				   Data::Dumper     => "",
				   Locale::Maketext => "",      
				   LWP::UserAgent   => "",
				   Storable         => "",
				   Time::Format     => "1.0",
				   Time::Local      => "",
				   URI::Escape      => "",
				   XML::Simple      => "",
	},
	(
	   $] >= 5.005
	   ?             ## Add these new keywords supported since 5.005
		 (
		   ABSTRACT_FROM =>
			 'lib/Weather/Com.pod',    # retrieve abstract from module
		   AUTHOR => 'Thomas Schnuecker <thomas@schnuecker.de>'
		 )
	   : ()
	),
);