blob: 6c70e10716382566b98ae9495cf137833a2d5baf (
plain)
1
2
3
4
5
6
7
8
9
10
|
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => "PreCommitHello",
VERSION_FROM => "lib/PreCommitHello.pm",
EXE_FILES => [qw(bin/pre-commit-perl-hello)],
);
|