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

bump rapmap to v0.6.0 #13495

Merged
merged 5 commits into from
Feb 5, 2019
Merged
Show file tree
Hide file tree
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
7 changes: 4 additions & 3 deletions recipes/rapmap/build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#!/bin/bash
set -eu -o pipefail

mkdir build && cd build
cmake -DNO_NATIVE_ARCH=TRUE -DCMAKE_CXX_FLAGS=-mno-avx ..
cmake -DNO_NATIVE_ARCH=TRUE -DCMAKE_CXX_FLAGS=-mno-avx -DCMAKE_OSX_DEPLOYMENT_TARGET=10.9 -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX -DCMAKE_BUILD_TYPE=RELEASE ..
make
make install
mkdir -p $PREFIX/bin
cp ../bin/rapmap $PREFIX/bin
CTEST_OUTPUT_ON_FAILURE=1 make test
19 changes: 15 additions & 4 deletions recipes/rapmap/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,22 +1,33 @@
{% set version="0.6.0" %}

package:
name: rapmap
version: "0.5.0"
version: {{ version }}

source:
url: https://github.com/COMBINE-lab/RapMap/archive/v0.5.0.tar.gz
sha256: d047d5ae622d2282252eab4b7831ac60af24ec2c65ebb7774efc08605d2df807
url: https://github.com/COMBINE-lab/RapMap/archive/v{{ version }}.tar.gz
sha256: 1ebb4f9b9b0b20cb73cb3663a57e3d8781f1e56953aec6d2f86e4a037dde11f6

requirements:
build:
- {{ compiler('cxx') }}
- {{ compiler('c') }}
- cmake
- autoconf
host:
- zlib
- bzip2
- unzip
- jemalloc >=5.1.0
run:
- jemalloc >=5.1.0
- tbb
- zlib
- bzip2

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

about:
home: https://github.com/COMBINE-lab/RapMap
Expand Down