Add Makefile.PL and MANIFEST.
authorP. J. McDermott <pjm@nac.net>
Mon, 23 Sep 2013 20:23:37 +0000 (16:23 -0400)
committerP. J. McDermott <pjm@nac.net>
Mon, 23 Sep 2013 20:23:37 +0000 (16:23 -0400)
MANIFEST [new file with mode: 0644]
Makefile.PL [new file with mode: 0644]

diff --git a/MANIFEST b/MANIFEST
new file mode 100644 (file)
index 0000000..8cb4a69
--- /dev/null
+++ b/MANIFEST
@@ -0,0 +1,4 @@
+Makefile.PL
+MANIFEST
+COPYING
+bin/ssic
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..9b8584a
--- /dev/null
@@ -0,0 +1,18 @@
+use strict;
+use warnings;
+
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+       'NAME' => 'ssic',
+       'VERSION' => '0.1.0',
+       'AUTHOR' => 'P. J. McDermott <pj@pehjota.net>',
+       'EXE_FILES' => [
+               'bin/ssic',
+       ],
+       'PREREQ_PM' => {
+               'Getopt::Long' => 0,
+               'CGI::SSI' => 0,
+               'File::Spec' => 0,
+       },
+);