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 perl-compress-bgzf #25078

Merged
merged 5 commits into from
Jan 23, 2024
Merged
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
44 changes: 44 additions & 0 deletions recipes/perl-compress-bgzf/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{% set name = "perl-compress-bgzf" %}
{% set version = "0.006" %}
{% set sha256 = "fb9716ba560a19d2cf29f385f5bf76d9c362fb71ba9df1ada244450230b1da67" %}

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

source:
url: https://cpan.metacpan.org/authors/id/V/VO/VOLKENING/Compress-BGZF-{{ version }}.tar.gz
sha256: {{ sha256 }}

build:
number: 0
noarch: generic
skip: true # [win]
script:
- perl Build.PL
- perl ./Build
- perl ./Build test
- perl ./Build install --installdirs vendor --create_packlist 0

requirements:
host:
- perl
- perl-module-build
run:
- perl

test:
imports:
- Compress::BGZF
- Compress::BGZF::Reader
- Compress::BGZF::Writer

about:
home: http://metacpan.org/pod/Compress::BGZF
summary: 'Read/write blocked GZIP (BGZF) files'
license: GPL-3.0-or-later
license_file: LICENSE

extra:
recipe-maintainers:
- jvolkening