-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -eu | ||
|
||
if [ "$(uname)" == "Darwin" ]; then | ||
export HOME=`mktemp -d` | ||
fi | ||
|
||
cargo build --release | ||
|
||
mv target/release/gfabase "${PREFIX}/bin" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{% set name = "gfabase" %} | ||
{% set version = "0.6.0" %} | ||
{% set sha256 = "d17ef77d2f57ace316a7b35d910c5cd73be2a0d70ec7fcd31f2d0e3afbe1273c" %} | ||
|
||
package: | ||
name: {{ name }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/mlin/{{ name }}/archive/refs/tags/v{{ version }}.tar.gz | ||
sha256: {{ sha256 }} | ||
|
||
build: | ||
number: 0 | ||
run_exports: | ||
- {{ pin_subpackage('gfabase', max_pin="x.x") }} | ||
|
||
requirements: | ||
build: | ||
- git | ||
- rust | ||
|
||
test: | ||
commands: | ||
- gfabase -h | ||
|
||
about: | ||
home: https://github.com/mlin/gfabase | ||
license: Apache License 2.0 | ||
summary: GFA insert into GenomicSQLite | ||
description: > | ||
gfabase is a command-line tool for indexed storage of Graphical Fragment Assembly (GFA1) data | ||
extra: | ||
additional-platforms: | ||
- linux-aarch64 | ||
recipe-maintainers: | ||
- aryarm | ||
skip-lints: | ||
- should_be_noarch_generic # Rust's `cargo build` command makes this not a noarch recipe. |