-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
Felix Van der Jeugt
committed
Jan 26, 2025
1 parent
9f3ed2e
commit ddc3697
Showing
1 changed file
with
41 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,41 @@ | ||
{% set version = "1.1.0" %} | ||
{% set name = "FragGeneScanRs" %} | ||
{% set sname = "frag_gene_scan_rs" %} | ||
|
||
package: | ||
name: {{ sname }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/unipept/{{ name }}/archive/{{ version }}.tar.gz | ||
sha256: 1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef | ||
|
||
build: | ||
number: 0 | ||
run_exports: | ||
- {{ pin_subpackage('frag_gene_scan_rs', max_pin="x") }} | ||
script: | ||
- cargo-bundle-licenses --format yaml --output THIRDPARTY.yml | ||
- cargo install -v --locked --no-track --root $PREFIX --path . | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('rust') }} | ||
- cargo-bundle-licenses | ||
|
||
test: | ||
commands: | ||
- cargo test | ||
- FragGeneScanRs --version | ||
|
||
about: | ||
home: https://github.com/unipept/FragGeneScanRs | ||
license: GPL-3.0-or-later | ||
license_file: | ||
- LICENSE | ||
- THIRDPARTY.yml | ||
summary: "Rust implementation of the gene prediction model for short and error-prone reads" | ||
|
||
extra: | ||
recipe-maintainers: | ||
- @ninewise |