Makefile.PL: Use VERSION_FROM.
[ssic.git] / Makefile.PL
1 use strict;
2 use warnings;
3
4 use ExtUtils::MakeMaker;
5
6 WriteMakefile(
7         'NAME' => 'ssic',
8         'VERSION_FROM' => 'bin/ssic',
9         'AUTHOR' => 'P. J. McDermott <pj@pehjota.net>',
10         'EXE_FILES' => [
11                 'bin/ssic',
12         ],
13         'PREREQ_PM' => {
14                 'Getopt::Long' => 0,
15                 'CGI::SSI' => 0,
16                 'File::Spec' => 0,
17         },
18 );