Skip to content

Commit

Permalink
Added metadata entry identifying github repository
Browse files Browse the repository at this point in the history
  • Loading branch information
neilb committed Feb 25, 2012
1 parent 548f0b3 commit 8259e47
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,20 @@ use ExtUtils::MakeMaker;
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'HTML::ParseBrowser',
VERSION_FROM => 'lib/HTML/ParseBrowser.pm', # finds $VERSION
PREREQ_PM => {}, # e.g., Module::Name => 1.1
VERSION_FROM => 'lib/HTML/ParseBrowser.pm',
PREREQ_PM => {
'Test::More' => 0,
},
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'lib/HTML/ParseBrowser.pm', # retrieve abstract from module
AUTHOR => 'Dodger <dodger@>') : ()),
(ABSTRACT_FROM => 'lib/HTML/ParseBrowser.pm',
AUTHOR => 'Neil Bowers <neil@bowers.com>') : ()),
($ExtUtils::MakeMaker::VERSION ge '6.48'?
(MIN_PERL_VERSION => 5.004,
META_MERGE => {
keywords => ['user-agent','browser','browser detection'],
keywords => ['user-agent','browser','browser detection'],
resources => {
repository => 'https://github.com/neilbowers/HTML-ParseBrowser',
},
},
'LICENSE' => 'perl',
) : ()),
Expand Down

0 comments on commit 8259e47

Please sign in to comment.