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

pbbam: revdep rebuilds #2 #17174

Merged
merged 1 commit into from
Aug 30, 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
8 changes: 6 additions & 2 deletions recipes/bax2bam/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ export BOOST_ROOT="${PREFIX}"
export PKG_CONFIG_LIBDIR="${PREFIX}"/lib/pkgconfig

# HDF5 doesn't have pkgconfig files yet
export CPPFLAGS="-isystem ${PREFIX}/include"
export LDFLAGS="-L${PREFIX}/lib -lhdf5_cpp -lhdf5"
export CPPFLAGS+=" -isystem ${PREFIX}/include"
export LDFLAGS+=" -L${PREFIX}/lib -lhdf5_cpp -lhdf5"

# required for Meson's sanity check
export LD_LIBRARY_PATH="${PREFIX}/lib"
export DYLD_FALLBACK_LIBRARY_PATH="${PREFIX}/lib"

# configure
# '--wrap-mode nofallback' prevents meson from downloading
Expand Down
6 changes: 3 additions & 3 deletions recipes/bax2bam/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ extra:
- mhsieh

build:
number: 6
number: 7

requirements:
build:
Expand All @@ -34,12 +34,12 @@ requirements:
- hdf5
- zlib
- blasr_libcpp 5.3.3*
- pbbam 0.23.0*
- pbbam 1.0.6*
run:
- hdf5
- zlib
- blasr_libcpp 5.3.3*
- pbbam 0.23.0*
- pbbam 1.0.6*

test:
commands:
Expand Down
8 changes: 6 additions & 2 deletions recipes/blasr/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ export BOOST_ROOT="${PREFIX}"
export PKG_CONFIG_LIBDIR="${PREFIX}"/lib/pkgconfig

# HDF5 doesn't have pkgconfig files yet
export CPPFLAGS="-isystem ${PREFIX}/include"
export LDFLAGS="-L${PREFIX}/lib -lhdf5_cpp -lhdf5"
export CPPFLAGS+=" -isystem ${PREFIX}/include"
export LDFLAGS+=" -L${PREFIX}/lib -lhdf5_cpp -lhdf5"

# required for Meson's sanity check
export LD_LIBRARY_PATH="${PREFIX}/lib"
export DYLD_FALLBACK_LIBRARY_PATH="${PREFIX}/lib"

# configure
# '--wrap-mode nofallback' prevents meson from downloading
Expand Down
6 changes: 3 additions & 3 deletions recipes/blasr/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ extra:
- mhsieh

build:
number: 0
number: 1

requirements:
build:
Expand All @@ -34,11 +34,11 @@ requirements:
- zlib
- hdf5
- blasr_libcpp 5.3.3*
- pbbam 0.23.0*
- pbbam 1.0.6*
run:
- hdf5
- blasr_libcpp 5.3.3*
- pbbam 0.23.0*
- pbbam 1.0.6*

test:
commands:
Expand Down