summaryrefslogtreecommitdiffstats
path: root/lang/perl/perl-struct-dumb/src/Makefile.PL
blob: aea8a7fc68af71dbd0c15b113efddd33b5a00e18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 5.014;
use ExtUtils::MakeMaker;
WriteMakefile
(
  'NAME' => 'Struct::Dumb',
  'VERSION_FROM' => 'lib/Struct/Dumb.pm',
  'PREREQ_PM' => {
                   'Scalar::Util' => 0,
                 },
  'INSTALLDIRS' => 'site',
  'EXE_FILES' => [],
  'PL_FILES' => {}
)
;