Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #25 from seqeralabs/fq
Browse files Browse the repository at this point in the history
Fq
  • Loading branch information
pabloaledo authored Jul 31, 2023
2 parents 117ad0d + 25bb04b commit 1d358c3
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
12 changes: 12 additions & 0 deletions recipes/fq/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env bash

set -eu

if [ "$(uname)" == "Darwin" ]; then
export HOME=`mktemp -d`
fi

cargo build --release

mv target/release/fq "${PREFIX}/bin"

40 changes: 40 additions & 0 deletions recipes/fq/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{% set name = "fq" %}
{% set version = "0.9.1" %}
{% set sha256 = "d29b7f43253b649ca4c1bb7f7d9104ba92b225903ce6cb44a44c9ff9a86ae22b" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://github.com/stjude-rust-labs/{{ name }}/archive/refs/tags/v{{ version }}.tar.gz
sha256: {{ sha256 }}

build:
number: 0

requirements:
build:
- git
- rust

test:
commands:
- fq -h

about:
home: https://github.com/stjude-rust-labs/fq
license: MIT
summary: fq is a library to generate and validate FASTQ file pairs.
description: >
fq provides subcommands for filtering, generating, subsampling, and
validating FASTQ files.
extra:
recipe-maintainers:
- claymcleod
- Midnighter
- zaeleus
skip-lints:
- should_be_noarch_generic # Rust's `cargo build` command makes this not a noarch recipe.

0 comments on commit 1d358c3

Please sign in to comment.