diff --git a/recipes/perl-convert-binary-c/build.sh b/recipes/perl-convert-binary-c/build.sh index acdfe24e65034..c6548a2e84767 100644 --- a/recipes/perl-convert-binary-c/build.sh +++ b/recipes/perl-convert-binary-c/build.sh @@ -1,5 +1,7 @@ #!/bin/bash +set -xe + # If it has Build.PL use that, otherwise use Makefile.PL if [ -f Build.PL ]; then perl Build.PL @@ -10,7 +12,7 @@ if [ -f Build.PL ]; then elif [ -f Makefile.PL ]; then # Make sure this goes in site perl Makefile.PL INSTALLDIRS=site - make + make -j ${CPU_COUNT} make test make install else diff --git a/recipes/perl-convert-binary-c/meta.yaml b/recipes/perl-convert-binary-c/meta.yaml index 0a5181a9a2988..94f4002d4df60 100644 --- a/recipes/perl-convert-binary-c/meta.yaml +++ b/recipes/perl-convert-binary-c/meta.yaml @@ -11,7 +11,7 @@ source: sha256: {{ sha256 }} build: - number: 0 + number: 1 run_exports: - {{ pin_subpackage('perl-convert-binary-c', max_pin="x.x") }} @@ -33,3 +33,8 @@ about: home: http://search.cpan.org/~mhx/Convert-Binary-C/ license: perl_5 summary: 'Binary Data Conversion using C Types' + +extra: + additional-platforms: + - linux-aarch64 + - osx-arm64