Skip to content

Commit

Permalink
bambamc: add aarch64/arm64 builds
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>
  • Loading branch information
martin-g committed Oct 1, 2024
1 parent 8fc154f commit 373c0c1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
3 changes: 2 additions & 1 deletion recipes/bambamc/build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#!/usr/bin/env bash

set -xe
export C_INCLUDE_PATH=${PREFIX}/include
export LIBRARY_PATH=${PREFIX}/lib
./configure --prefix=${PREFIX}
make
make -j ${CPU_COUNT}
make install
9 changes: 8 additions & 1 deletion recipes/bambamc/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ source:
md5: 4de1f030fab1de54387f68e4fbd2cd35

build:
number: 7
number: 8
run_exports:
- {{ pin_subpackage('bambamc', max_pin="x.x.x") }}

requirements:
build:
Expand All @@ -31,3 +33,8 @@ about:
license: GPLv3
license_file: COPYING
summary: lightweight C implementation of name collating BAM file input and BAM file output

extra:
additional-platforms:
- linux-aarch64
- osx-arm64
4 changes: 2 additions & 2 deletions recipes/smalt/build.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#!/bin/bash

set -ef -o pipefail
set -xef -o pipefail

export CPPFLAGS="-I${PREFIX}/include"
export LDFLAGS="-L${PREFIX}/lib"

./configure --prefix=$PREFIX
make
make -j ${CPU_COUNT}

if [ -z "${OSX_ARCH}" ]; then
make check
Expand Down

0 comments on commit 373c0c1

Please sign in to comment.