From a953da452b82eef78f319ccadf3a4d129d26e7fd Mon Sep 17 00:00:00 2001 From: Martin Tzvetanov Grigorov Date: Wed, 2 Oct 2024 15:40:16 +0300 Subject: [PATCH] metacache: add linux-aarch64 build Signed-off-by: Martin Tzvetanov Grigorov --- recipes/metacache/build.sh | 4 ++-- recipes/metacache/meta.yaml | 8 ++++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/recipes/metacache/build.sh b/recipes/metacache/build.sh index d598c1db19aeb..148f16909d068 100644 --- a/recipes/metacache/build.sh +++ b/recipes/metacache/build.sh @@ -1,6 +1,6 @@ #!/bin/bash -set -e +set -xe export CPATH=${PREFIX}/include export CXXPATH=${PREFIX}/include @@ -11,7 +11,7 @@ sed -i.bak "s|LDFLAGS = -pthread|LDFLAGS = -pthread -L$PREFIX/lib|" mkdir -p $PREFIX/bin -make +make -j ${CPU_COUNT} chmod +x metacache download-ncbi-genomes download-ncbi-taxmaps download-ncbi-taxonomy metacache-build-refseq metacache-db-info metacache-partition-genomes summarize-results mv metacache $PREFIX/bin mv download-ncbi-genomes $PREFIX/bin diff --git a/recipes/metacache/meta.yaml b/recipes/metacache/meta.yaml index b910941468c37..c2067924f2f8b 100644 --- a/recipes/metacache/meta.yaml +++ b/recipes/metacache/meta.yaml @@ -9,7 +9,7 @@ source: sha256: 2b43aa1ac051d6cbaa4d29c3ed7d9593e226e7e2b35cdd0b2e513e465456a7b2 build: - number: 0 + number: 1 skip: True # [osx] run_exports: - {{ pin_subpackage('metacache', max_pin="x") }} @@ -39,6 +39,10 @@ test: about: home: https://github.com/muellan/metacache - license: GPL-3.0 + license: GPL-3.0-or-later license_file: LICENSE summary: MetaCache is a classification system for mapping genomic sequences (short reads, long reads, contigs, ...) from metagenomic samples to their most likely taxon of origin. + +extra: + additional-platforms: + - linux-aarch64