From: Matt S Trout Date: Tue, 1 Nov 2011 11:57:26 +0000 (+0000) Subject: Makefile.PL and $VERSION X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2FSCS.git;a=commitdiff_plain;h=2f796f6981782a55c855c784e0c92d73e3ac45b1 Makefile.PL and $VERSION --- diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..5a4754c --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,20 @@ +use strict; +use warnings FATAL => 'all'; +use 5.008001; +use ExtUtils::MakeMaker; + +(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; + +WriteMakefile( + NAME => 'SCS', + VERSION_FROM => 'lib/SCSite.pm', + PREREQ_PM => { + 'Web::Simple' => '0.009', + 'Moo' => '0.009005', + 'Syntax::Keyword::Gather' => '1.001', + 'IO::All' => '0.44', + 'JSON' => '2.50', + 'Text::MultiMarkdown' => '1.000033', + 'HTML::Zoom' => '0.009006', + }, +); diff --git a/lib/SCSite.pm b/lib/SCSite.pm index 2b75229..69925c2 100755 --- a/lib/SCSite.pm +++ b/lib/SCSite.pm @@ -2,6 +2,8 @@ package SCSite; +our $VERSION = '0.001001'; # 0.1.1 + use IO::All; use SCSite::PageSet; use Web::Simple; diff --git a/maint/Makefile.PL.include b/maint/Makefile.PL.include new file mode 100644 index 0000000..7d6f706 --- /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) '; + +manifest_include 't/pages' => qr/.*/; +manifest_include 'share' => qr/.*/;