Skip to content

Commit

Permalink
Update vt to 0.57721 (#10253)
Browse files Browse the repository at this point in the history
  • Loading branch information
tseemann authored Aug 4, 2018
1 parent 1bdaa32 commit 98f1d29
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 8 deletions.
14 changes: 14 additions & 0 deletions recipes/vt/2015.11.10/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash

export INCLUDE_PATH="${PREFIX}/include"
export LIBRARY_PATH="${PREFIX}/lib"
export LD_LIBRARY_PATH="${PREFIX}/lib"

export CFLAGS="-I$PREFIX/include"
export CPATH=${PREFIX}/include
export LDFLAGS="-L${PREFIX}/lib"
export CPPFLAGS="-I${PREFIX}/include"

make
mkdir -p $PREFIX/bin
cp vt $PREFIX/bin
28 changes: 28 additions & 0 deletions recipes/vt/2015.11.10/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
package:
name: vt
version: '2015.11.10'

source:
url: https://github.com/atks/vt/archive/15f90de5.tar.gz
sha256: a135be9a9b3094e21e92e915633e114a794d197172093fcab4c0999b97fa7e87

build:
number: 3
skip: True # [osx]

requirements:
build:
- {{ compiler('cxx') }}
host:
- zlib
run:
- zlib

test:
commands:
- vt

about:
home: https://github.com/atks/vt
license: MIT
summary: A tool set for short variant discovery in genetic sequence data
3 changes: 2 additions & 1 deletion recipes/vt/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export CPATH=${PREFIX}/include
export LDFLAGS="-L${PREFIX}/lib"
export CPPFLAGS="-I${PREFIX}/include"

make
make -j${CPU_COUNT}
make test
mkdir -p $PREFIX/bin
cp vt $PREFIX/bin
25 changes: 18 additions & 7 deletions recipes/vt/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,28 +1,39 @@
{% set name = "vt" %}
{% set version = "0.57721" %}

package:
name: vt
version: '2015.11.10'
name: {{ name }}
version: {{ version }}

source:
url: https://github.com/atks/vt/archive/15f90de5.tar.gz
sha256: a135be9a9b3094e21e92e915633e114a794d197172093fcab4c0999b97fa7e87
url: https://github.com/atks/{{ name }}/archive/{{ version }}.tar.gz
sha256: 8f06d464ec5458539cfa30f81a034f47fe7f801146fe8ca80c14a3816b704e17

build:
number: 3
number: 0
skip: True # [osx]

requirements:
build:
- {{ compiler('cxx') }}
host:
- bzip2
- curl
- xz
- zlib
- libdeflate
run:
- bzip2
- curl
- xz
- zlib
- libdeflate

test:
commands:
- vt

about:
home: https://github.com/atks/vt
home: https://genome.sph.umich.edu/wiki/Vt
license: MIT
summary: A tool set for short variant discovery in genetic sequence data
summary: A tool set for manipulating and generating VCF files

0 comments on commit 98f1d29

Please sign in to comment.