From bb64e041817581e1e3ca99ee8ce2ab7a91dbf5eb Mon Sep 17 00:00:00 2001 From: Martin Grigorov Date: Mon, 28 Oct 2024 21:44:44 +0200 Subject: [PATCH] prodigal-gv: add aarch64/arm64 builds (#51715) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Tzvetanov Grigorov Co-authored-by: Björn Grüning --- recipes/prodigal-gv/build.sh | 4 +++- recipes/prodigal-gv/meta.yaml | 12 ++++++++++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/recipes/prodigal-gv/build.sh b/recipes/prodigal-gv/build.sh index 15bf945056cfe..86994efd62287 100644 --- a/recipes/prodigal-gv/build.sh +++ b/recipes/prodigal-gv/build.sh @@ -1,8 +1,10 @@ #!/bin/sh +set -xe + # the executable is not installed in $PREFIX though # make install prefix=$PREFIX -make CC=$CC +make -j"${CPU_COUNT}" CC=$CC mkdir -p $PREFIX/bin cp $PKG_NAME $PREFIX/bin diff --git a/recipes/prodigal-gv/meta.yaml b/recipes/prodigal-gv/meta.yaml index e322b1fd68b4d..e8108dd5a1016 100644 --- a/recipes/prodigal-gv/meta.yaml +++ b/recipes/prodigal-gv/meta.yaml @@ -9,7 +9,9 @@ source: sha256: 1fb40a8ae204ce2f41a413edb1edf5b8f22c28c2812320e2807ab48f8e8ce795 build: - number: 2 + number: 3 + run_exports: + - {{ pin_subpackage('prodigal-gv', max_pin="x") }} requirements: build: @@ -26,5 +28,11 @@ test: about: home: https://github.com/apcamargo/prodigal-gv - license: GPL v3 + license: GPL-3.0-only + license_file: LICENSE summary: A fork of Prodigal meant to improve gene calling for giant viruses + +extra: + additional-platforms: + - linux-aarch64 + - osx-arm64 \ No newline at end of file