Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.

Commit

Permalink
Added recipe for assimulo-2.8 package
Browse files Browse the repository at this point in the history
  • Loading branch information
mutirri committed Jan 14, 2016
1 parent 64d3a9f commit e53e8c2
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
15 changes: 15 additions & 0 deletions assimulo/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/sh

# Build dependencies:
# - blas-devel

if [[ ${ARCH} == '64' ]]; then
declare -r BLAS_LIB_PATH='/usr/lib64'
else
declare -r BLAS_LIB_PATH='/usr/lib'
fi

${PYTHON} setup.py install \
--lapack-home=${PREFIX}/lib \
--blas-home=${BLAS_LIB_PATH} \
--sundials-home=${PREFIX}/lib || exit 1;
41 changes: 41 additions & 0 deletions assimulo/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
package:
name: assimulo
version: 2.8

build:
number: 0

source:
fn: Assimulo-2.8.zip
url: https://pypi.python.org/packages/source/A/Assimulo/Assimulo-2.8.zip
md5: 72ad74096cd55a36c9cb2adbef3b5146

requirements:
build:
- setuptools
- python
- cython >=0.18
- numpy >1.6.1
- scipy
- matplotlib
- lapack
- sundials

run:
- python
- cython >=0.18
- numpy >1.6.1
- scipy
- matplotlib
- lapack
- sundials

test:
imports:
- assimulo
- assimulo.lib

about:
home: http://www.jmodelica.org/assimulo
license: LGPL
summary: A package for solving ordinary differential equations and differential algebraic equations

0 comments on commit e53e8c2

Please sign in to comment.