Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# $Id$
PortSystem 1.0
name moose
version 3.0.2
categories science
platforms darwin
maintainers dilawars \
ncbs.res.in:dilawars
description MOOSE is the Multiscale Object-Oriented Simulation \
Environment.
long_description MOOSE is the Multiscale Object-Oriented Simulation \
Environment.
homepage http://moose.ncbs.res.in
fetch.type git
fetch.ignore_sslcert yes
git.url https://github.com/BhallaLab/moose-core
git.branch master
license GPL-3
depends_build port:cmake \
port:python27 \
port:gsl \
port:hdf5 \
depends_lib port:gsl \
port:hdf5 \
port:py27-matplotlib \
port:py27-numpy \
port:python27 \
set python_branch 2.7
configure.cmd {
mkdir -p _build
cd _build
cmake -DCMAKE_INSTALL_PREFIX=${prefix} ..
}
configure.args VERBOSE=1
configure.pre_args ""
configure.post_args ""
build.cmd cd _build && make
build.pre_args ""
build.post_args ""
test.cmd cd _build && ctest --output-on-failure
##destroot.cmd cd _build && make install DESTDIR=${destdir}
##destroot.args ""
##destroot.pre_args ""
##destroot.post_args ""
##destroot.destdir prefix=${destroot}/${prefix}