Ticket #49580: Portfile

File Portfile, 1.7 KB (added by egull@…, 8 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem          1.0
5PortGroup           cmake 1.0
6PortGroup           github 1.0
7
8github.setup        ALPSCore ALPSCore 0.5.1 v
9categories          science
10platforms           darwin
11license             GPL-2
12maintainers         umich.edu:galexv
13
14description         A package for the simulation of condensed matter physics problems: Core Libraries
15long_description    ALPSCore contains the core libraries of the applications and libraries \
16                    for physics simulations, ALPS. The package is maintained by the UMich group, \
17                    for more information see alpscore.org
18
19homepage            http://alpscore.org
20
21checksums           rmd160  34d25679d4cc3f3aea1b3685e3b133d788e3168d \
22                    sha256  a10b64f8fdfbdafe510508d408319755f082979665a9d83f23799da77ad4b89b
23
24compiler.blacklist  gcc-4.2
25
26depends_lib         port:boost \
27                    port:hdf5
28
29# BOOST_ROOT        - location for boost distribution
30# GTEST_ROOT        - location for gtest sources/binaries
31# HDF5_ROOT         - location for the HDF5 distribution
32# EXTRA_CMAKE_FLAGS - extra options for CMake invocation (can be empty)
33# EXTRA_MAKE_FLAGS  - extra options for the first `make` invocation (can be empty)
34# FAST_BUILD
35configure.args      -DTesting=ON \
36                    -DExtensiveTesting=OFF \
37                    -DBOOST_ROOT=${prefix} \
38                    -DENABLE_MPI=FALSE \
39                    -DBuildPython=OFF \
40                    -DTestXMLOutput=TRUE \
41                    -DDocumentation=OFF
42
43cmake.out_of_source yes