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

Commit

Permalink
First go at neuron and iv packages
Browse files Browse the repository at this point in the history
  • Loading branch information
mattions committed Sep 14, 2015
1 parent 6d195e2 commit 2249918
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 0 deletions.
7 changes: 7 additions & 0 deletions iv/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

set -x

./configure --prefix=${PREFIX}
make
make install
7 changes: 7 additions & 0 deletions iv/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package:
name: iv
version: "19"

source:
url: http://www.neuron.yale.edu/ftp/neuron/versions/v7.4/iv-19.tar.gz
fn: iv-19.tar.gz
9 changes: 9 additions & 0 deletions neuron/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

set -e

./configure --with-nrnpython=$PYTHON --with-iv --prefix=${PREFIX}
make
make install
cd ${SRC_DIR}/src/nrnpython
$PYTHON setup.py install
17 changes: 17 additions & 0 deletions neuron/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package:
name: neuron
version: "7.4"

source:
url: http://www.neuron.yale.edu/ftp/neuron/versions/v7.4/nrn-7.4.tar.gz
fn: nrn-7.4.tar.gz

requirements:
build:
- iv ==19
- python
- readline
run:
- iv ==19
- python
- readline

0 comments on commit 2249918

Please sign in to comment.