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

Commit

Permalink
Merge pull request #372 from jmtcsngr/wr_0_32_2
Browse files Browse the repository at this point in the history
add recipe for wr 0.32.2
  • Loading branch information
kjsanger authored Jun 15, 2023
2 parents 836aa32 + 85b81d4 commit da30d67
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

#### Recipes
- wr 0.32.2

#### Features

Expand Down
9 changes: 9 additions & 0 deletions recipes/wr/0.32.2/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/sh

set -e

mkdir -p "$PREFIX/bin"
cp wr "$PREFIX/bin/"

mkdir -p "$PREFIX/share/doc/wr"
cp README.md "$PREFIX/share/doc/wr/"
24 changes: 24 additions & 0 deletions recipes/wr/0.32.2/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{% set version = "0.32.2" %}
{% set sha256 = "ce4cc0528cf2e43eacfd62bd05990b959bdfcdba5f14e5d946db8fb20970d839" %}

package:
name: wr
version: "{{ version }}"

about:
home: https://github.com/VertebrateResequencing/wr
license: GPL3
summary: "High performance Workflow Runner."

build:
number: 0
binary_relocation: false

source:
url: https://github.com/VertebrateResequencing/wr/releases/download/v{{ version }}/wr-linux-x86-64.zip
fn: wr-{{ version }}.zip
sha256: {{ sha256 }}

test:
commands:
- wr -h

0 comments on commit da30d67

Please sign in to comment.