From: Matt S Trout Date: Mon, 13 Aug 2012 20:23:31 +0000 (+0000) Subject: distify X-Git-Tag: v1.000000~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2FHTML-String.git;a=commitdiff_plain;h=a38082d493578f47d68b07c78d164bc457ddba3d distify --- diff --git a/Changes b/Changes new file mode 100644 index 0000000..7185c76 --- /dev/null +++ b/Changes @@ -0,0 +1 @@ + - Initial release diff --git a/Makefile.PL b/Makefile.PL index 2897ead..853c354 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,10 +1,13 @@ use strict; -use warnings; +use warnings FATAL => 'all'; use ExtUtils::MakeMaker; +(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; + + WriteMakefile( NAME => 'HTML-String', - VERSION => '1.0', + VERSION_FROM => 'lib/HTML/String.pm', PREREQ_PM => { 'Safe::Isa' => 1, 'Data::Munge' => '0.04', diff --git a/lib/HTML/String.pm b/lib/HTML/String.pm index a320a69..58aa736 100644 --- a/lib/HTML/String.pm +++ b/lib/HTML/String.pm @@ -4,6 +4,10 @@ use strictures 1; use HTML::String::Value; use Exporter 'import'; +our $VERSION = '1.000000'; # 1.0.0 + +$VERSION = eval $VERSION; + our @EXPORT = qw(html); sub html { diff --git a/maint/Makefile.PL.include b/maint/Makefile.PL.include new file mode 100644 index 0000000..dc0d14a --- /dev/null +++ b/maint/Makefile.PL.include @@ -0,0 +1,8 @@ +BEGIN { + -e 'Distar' + or system("git clone git://git.shadowcat.co.uk/p5sagit/Distar.git") +} +use lib 'Distar/lib'; +use Distar; + +author 'mst - Matt S. Trout (cpan:MSTROUT) ';