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

Commit

Permalink
Merge branch 'devel' for release 4.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kjsanger committed May 11, 2023
2 parents 19e21b8 + 665d2b7 commit d3c6e00
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

## [4.9.0]

### Added

#### Recipes
- bambi 0.15.0

## [4.8.0]

### Added
Expand Down
13 changes: 13 additions & 0 deletions recipes/bambi/0.15.0/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/sh

set -ex

autoreconf -fi

n="$CPU_COUNT"

CPPFLAGS="-I$PREFIX/include" LDFLAGS="-Wl,-rpath,$PREFIX/lib -L$PREFIX/lib" \
./configure --prefix="$PREFIX" --with-htslib="$PREFIX"

make -j $n CPPFLAGS="-I$PREFIX/include" LDFLAGS="-L$PREFIX/lib"
make install prefix="$PREFIX"
65 changes: 65 additions & 0 deletions recipes/bambi/0.15.0/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{% set version = "0.15.0" %}
{% set htslib_version = "1.16" %}

package:
name: bambi-pkg
version: "{{ version }}"

about:
home: https://github.com/wtsi-npg/bambi
license: AGPL
summary: "A set of programs to manipulate SAM/BAM/CRAM files, using HTSLIB."

build:
number: 0

source:
git_url: https://github.com/wtsi-npg/bambi.git
git_rev: {{ version }}

requirements:
build:
- {{ compiler("c") }}
- autoconf
- automake
- make
- perl
- pkg-config
host:
- libgd-dev
- libhts-dev =={{ htslib_version }}
- libxml2-dev
- libz-dev
run:
- libgd
- libhts =={{ htslib_version }}
- libxml2
- libz

outputs:
- name: bambi
requirements:
build:
- {{ compiler("c") }}
- autoconf
- automake
- make
- perl
- pkg-config
host:
- libgd-dev
- libhts-dev =={{ htslib_version }}
- libxml2-dev
- libz-dev
run:
- libgd
- libhts =={{ htslib_version }}
- libxml2
- libz
files:
- bin/bambi
- bin/check_bcl

test:
commands:
- bambi --version

0 comments on commit d3c6e00

Please sign in to comment.