Ticket #40955: Portfile

File Portfile, 1.1 KB (added by kurtjaeke@…, 11 years ago)

Minimal Portfile.

Line 
1PortSystem          1.0
2
3name                ADOL-C
4version             2.4.1
5categories          science
6platforms           darwin
7maintainers         nomaintainer
8license             BSD
9
10description         A library providing a C++ algorithmic derivative type, and \
11                    Fortran/C/C++ interfaces to programmatically access them.
12
13long_description    ${description}
14
15homepage            http://www.coin-or.org/projects/ADOL-C.xml
16master_sites        http://www.coin-or.org/download/source/ADOL-C/
17extract.suffix      .tgz
18
19checksums           sha256 05bf946cc1764e2b3fa7e708ccc4303f289699d9f36b9d525f6a9a6129b4d578 \
20                    rmd160 7f06f8ab6fefa1d50a9a6fe3e9be5e6579d52d83
21
22use_parallel_build  yes
23
24universal_variant   yes
25
26configure.ccache    no
27
28configure.args      --disable-dependency-tracking \
29                    --enable-shared \
30                    --disable-static \
31                    --libdir=${prefix}/lib \
32                    --libexecdir=${prefix}/libexec
33
34livecheck.type      regex
35livecheck.url       http://www.coin-or.org/download/source/ADOL-C/
36livecheck.regex     ADOL-C-(\[0-9.\]+)
37