{% set version = "20240522" %}
{% set sha256 = "67ed9fad31bf3e25f09d500e7e8ca7df9e3ac380fe4ebd16c6f014448a346928" %}

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

source:
  url: http://ftpmirror.gnu.org/parallel/parallel-{{ version }}.tar.bz2
  fn: parallel-{{ version }}.tar.bz2
  sha256: {{ sha256 }}

build:
  number: 0
  skip: True  # [win]

requirements:
  build:
    - make
    - m2-make  # [win]
    - m2-grep  # [win]
    - m2-gawk  # [win]
  run:
    - perl

test:
  commands:
    - parallel --version  # [not win]
    - bash -c 'export SHELL=`cygpath -u "$BASH"`; parallel --plain --version'  # [win]

about:
  home: http://www.gnu.org/software/parallel/
  license: GPL-3
  license_family: GPL
  summary: GNU parallel is a shell tool for executing jobs in parallel using one or more computers.
  license_file: LICENSES/GPL-3.0-or-later.txt

extra:
  recipe-maintainers:
    - rvalieris
