summaryrefslogtreecommitdiff
path: root/homebrew/mpich/.beer
blob: 83b15052e508877ee232d4c45245c93ead9de7e6 (plain)
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
{
    "name": "Mpich",
    "description": "Implementation of the MPI Message Passing Interface standard",
    "url": "https://www.mpich.org/static/downloads/3.3/mpich-3.3.tar.gz",
    "mirror": "https://fossies.org/linux/misc/mpich-3.3.tar.gz",
    "homepage": "https://www.mpich.org/",
    "depends": [
        {
            "depend": "autoconf",
            "build-depend": true
        },
        {
            "depend": "automake",
            "build-depend": true
        },
        {
            "depend": "libtool",
            "build-depend": true
        },
        {
            "depend": "gcc",
            "build-depend": false
        }
    ],
    "resource": [],
    "conflicts": [
        {
            "conflict": "open-mpi",
            "reason": "both install MPI compiler wrappers"
        }
    ],
    "patches": [],
    "install": [
        "if build.head?",
        "ENV[\"MPICH_AUTOTOOLS_DIR\"] = HOMEBREW_PREFIX + \"bin\"",
        "system \"./autogen.sh\"",
        "end",
        "system \"./configure\", \"--disable-dependency-tracking\",",
        "\"--disable-silent-rules\",",
        "\"--prefix=#{prefix}\",",
        "\"--mandir=#{man}\"",
        "system \"make\"",
        "system \"make\", \"check\"",
        "system \"make\", \"install\""
    ],
    "version": "3.3",
    "file": "mpich.rb"
}