Makefile.PL and $VERSION
Matt S Trout [Tue, 1 Nov 2011 11:57:26 +0000 (11:57 +0000)]
Makefile.PL [new file with mode: 0644]
lib/SCSite.pm
maint/Makefile.PL.include [new file with mode: 0644]

diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..5a4754c
--- /dev/null
@@ -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',
+  },
+);
index 2b75229..69925c2 100755 (executable)
@@ -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 (file)
index 0000000..7d6f706
--- /dev/null
@@ -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) <mst@shadowcat.co.uk>';
+
+manifest_include 't/pages' => qr/.*/;
+manifest_include 'share' => qr/.*/;