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

Add gfaviz #52752

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
48 changes: 48 additions & 0 deletions recipes/gfaviz/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{% set name = "gfaviz" %}
{% set version="1.0.0" %}
{% set hash="4bc4327dd182812a9cfd53a39632bf41f461170e142df62ebbd0ba441239a6d4" %}

package:
name: {{ name }}
version: {{ version }}

build:
number: 0
skip: True # [ windows ]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need. Windows is not supported anyway

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I removed it from recipe

run_exports:
- {{ pin_subpackage(name, max_pin="x") }}
script:
- qmake
- make
- mkdir -p {{ PREFIX }}/bin
- cp {{ SRC_DIR }}/gfaviz.app/Contents/MacOS/gfaviz {{ PREFIX }}/bin/ # [ osx ]
- cp {{ SRC_DIR }}/gfaviz {{ PREFIX }}/bin/ # [ linux ]

source:
url: https://github.com/ggonnella/gfaviz/archive/refs/tags/v{{ version }}.tar.gz
sha256: {{ hash }}


requirements:
build:
- {{ compiler('cxx') }}
- qt =5
- libgl-devel # [ linux ]
martin-g marked this conversation as resolved.
Show resolved Hide resolved
run:
# - qt =5
- {{ pin_compatible('qt', max_pin='x.x.x') }}

test:
commands:
- gfaviz --no-gui
- gfaviz --help

about:
home: https://github.com/ggonnella/gfaviz
license: ISC
license_file: LICENSE.txt
summary: GfaViz is a graphical interactive tool for the visualization of sequence graphs in GFA format. It supports both the GFA1 and GFA2 formats.

extra:
recipe-maintainers:
- pbordron
Loading