Skip to content
This repository has been archived by the owner on May 17, 2020. It is now read-only.

Commit

Permalink
Merge pull request #12 from ilastik/ilastik
Browse files Browse the repository at this point in the history
conda recipe updates
  • Loading branch information
svenpeter42 committed Aug 14, 2017
2 parents f3d6f82 + 09a6fb7 commit 1f8d11a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
9 changes: 9 additions & 0 deletions pkg/conda/fastfilters/build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
#!/bin/bash

if [ $(uname) == Darwin ]; then
CC=clang
CXX=clang++
CXXFLAGS="-stdlib=libc++"
else
CC=gcc
CXX=g++
fi

mkdir build_conda
cd build_conda
cmake -DCMAKE_INSTALL_PREFIX=${PREFIX} ..
Expand Down
5 changes: 2 additions & 3 deletions pkg/conda/fastfilters/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,14 @@ build:

requirements:
build:
- gcc 4.8.5 # [unix]
- python 2.7*|3.4*|3.5*
- cmake
- python 2.7*|3.4*|3.5*|3.6*
- python {{PY_VER}}*
- numpy
- nose
- vigra

run:
- libgcc 4.8* # [unix]
- python {{PY_VER}}*
- numpy

Expand Down

0 comments on commit 1f8d11a

Please sign in to comment.