add bin install to makefile.pl

This commit is contained in:
Zane C. B-H 2021-11-26 18:10:04 -06:00
parent 279cce3c71
commit bba3f40494
1 changed files with 7 additions and 6 deletions

View File

@ -4,12 +4,13 @@ use warnings;
use ExtUtils::MakeMaker; use ExtUtils::MakeMaker;
my %WriteMakefileArgs = ( my %WriteMakefileArgs = (
NAME => 'File::Syslogger', NAME => 'File::Syslogger',
AUTHOR => q{Zane C. Bowers-Hadley <vvelox@vvelox.net>}, AUTHOR => q{Zane C. Bowers-Hadley <vvelox@vvelox.net>},
VERSION_FROM => 'lib/File/Syslogger.pm', VERSION_FROM => 'lib/File/Syslogger.pm',
ABSTRACT_FROM => 'lib/File/Syslogger.pm', ABSTRACT_FROM => 'lib/File/Syslogger.pm',
LICENSE => 'artistic_2', LICENSE => 'artistic_2',
MIN_PERL_VERSION => '5.006', MIN_PERL_VERSION => '5.006',
INST_SCRIPT => 'bin',
CONFIGURE_REQUIRES => { CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '0', 'ExtUtils::MakeMaker' => '0',
}, },