Ticket #47350: Portfile

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

ALPSCore initial Port file

Line 
1# $Id$
2
3PortSystem          1.0
4PortGroup cmake 1.0
5
6name                ALPSCore
7version             0.3.0
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  657ada97ffef7d322cec25cb783b8a5689440f53 \
20                    sha256  070220292b33c6b43acb3ebc2ed20850fd98b0986d3e13fd9a593a643fb5b01b
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