Add Makefile.PL and MANIFEST.
[ssic.git] / Makefile.PL
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,
+       },
+);