Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

panacus: add aarch64/arm64 builds #51066

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions recipes/panacus/build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#!/bin/bash -euo

RUST_BACKTRACE=1 CARGO_HOME="${BUILD_PREFIX}/.cargo" cargo build --release
set -xe

mkdir -p $PREFIX/bin
cp target/release/panacus $PREFIX/bin

RUST_BACKTRACE=1 CARGO_HOME="${BUILD_PREFIX}/.cargo" cargo install --no-track --locked --verbose --root \"${PREFIX}\" --path .

cp scripts/panacus-visualize.py $PREFIX/bin/panacus-visualize
7 changes: 5 additions & 2 deletions recipes/panacus/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ source:
sha256: e4709c5e3e4b5c445789406a0ebf06a2052e24bc5fcc3b540cacf8064c2ab478

build:
number: 0
number: 1
run_exports:
- {{ pin_subpackage(name, max_pin="x.x") }}

requirements:
build:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- {{ compiler('rust') }}
- cmake
- make
- rust >=1.68
run:
- python
- matplotlib-base
Expand All @@ -43,6 +43,9 @@ about:
summary: panacus is a tool for computing counting statistics for GFA files

extra:
additional-platforms:
- linux-aarch64
- osx-arm64
recipe-maintainers:
- danydoerr
- heringerp
Loading