Ticket #47350: Portfile.2

File Portfile.2, 1.6 KB (added by egull@…, 9 years ago)

Portfile for version 0.4

Line 
1# $Id$
2
3PortSystem          1.0
4PortGroup cmake 1.0
5
6name                ALPSCore
7version             0.4
8categories          science
9platforms           darwin
10license             GPL-2
11maintainers         umich.edu:galexv
12description         A package for the simulation of condensed matter physics problems: Core Libraries
13long_description    ALPSCore contains the core libraries of the applications and libraries for physics simulations, ALPS. The package is maintained by the UMich group, for more information see alpscore.org
14homepage            http://alpscore.org
15
16master_sites        http://github.com/ALPSCore/ALPSCore/archive/
17distfiles           v${version}.tar.gz
18
19checksums           rmd160  e71ee5e7060d64ff5b6ac25e0e42da4ef01cf356 \
20                    sha256  5ef6e473063d85325a50df1a17de81c25622f66604e2f96bcf514db6388441e9
21
22depends_lib         port:boost port:hdf5
23# BOOST_ROOT - location for boost distribution
24# GTEST_ROOT - location for gtest sources/binaries
25# HDF5_ROOT - location for the HDF5 distribution
26# EXTRA_CMAKE_FLAGS - extra options for CMake invocation (can be empty)
27# EXTRA_MAKE_FLAGS - extra options for the first `make` invocation (can be empty)
28# FAST_BUILD
29cmake.out_of_source   yes
30configure.args        -DCMAKE_INSTALL_PREFIX=${prefix} \
31                      -DTesting=ON \
32                      -DExtensiveTesting=OFF \
33                      -DCMAKE_BUILD_TYPE=Release \
34                      -DBOOST_ROOT=${prefix} \
35                      -DENABLE_MPI=FALSE \
36                      -DBuildPython=OFF \
37                      -DTestXMLOutput=TRUE \
38                      -DDocumentation=OFF