Skip to content

Commit

Permalink
build: updating Makefile.PL
Browse files Browse the repository at this point in the history
Trying to reduce non used dependencies on this file
  • Loading branch information
manuelnaranjo committed Jun 28, 2024
1 parent e9b7f1d commit 73110dd
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,6 @@ use warnings;
use v5.28;

use ExtUtils::MakeMaker;
use Path::Tiny;
use JSON::XS;

my @V8_CC_OPTS;
my @V8_CC_DEFS;
my @V8_CC_WRNS;
my @V8_CC_INCD;
my @V8_LD_LIBD;

use File::Fetch;
use POSIX();
Expand Down Expand Up @@ -83,6 +75,12 @@ if ( ! -d $V8_BASE_DIR ) {
rmove("${V8_BASE_DIR}.tmp", $V8_BASE_DIR);
}

my @V8_CC_OPTS;
my @V8_CC_DEFS;
my @V8_CC_WRNS;
my @V8_CC_INCD;
my @V8_LD_LIBD;

push @V8_CC_INCD, $V8_INCLUDE_DIR;
push @V8_LD_LIBD, $V8_LIB_DIR;

Expand Down Expand Up @@ -122,10 +120,15 @@ WriteMakefile(
LICENSE => 'mit',
MIN_PERL_VERSION => 5.028000,
PREREQ_PM => {
'JSON::PP' => 0,
'Text::Trim' => 0,
'XSLoader' => 0,
'ExtUtils::XSpp' => '0.11',
'File::Fetch' => 0,
'Digest::SHA' => 0,
'Archive::Tar' => 0,
'File::Path' => 0,
'File::Basename' => 0,
'File::Copy::Recursive' => 0,
},
TEST_REQUIRES => {
'Data::Dumper' => 0,
Expand Down

0 comments on commit 73110dd

Please sign in to comment.