Ticket #26238: Portfile.2

File Portfile.2, 1.5 KB (added by hmatuschek@…, 11 years ago)

Updated Portfile for libsbml version 5.8

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
5
6name                libsbml
7version             5.8.0
8categories          science
9platforms           darwin
10maintainers         nomaintainer
11
12description         The Systems Biology Markup Language library
13
14long_description    LibSBML is a free, open-source programming library to \
15                    help you read, write, manipulate, translate, and validate \
16                    SBML files and data streams. It is not an application \
17                    itself (though it does come with example programs), but \
18                    rather a library you can embed in your own applications.
19
20homepage            http://sbml.org/Software/libSBML
21master_sites        sourceforge:sbml
22
23distname            libSBML-${version}-src
24worksrcdir          libsbml-${version}
25
26checksums           md5     7271de66294169c0e728d2e7706e2941 \
27                    sha1    ca931f75962f3bb4397f96259c338185014ff091 \
28                    rmd160  185beb54cdda53e5a74958c77964ea3015c7b533
29
30depends_lib         port:libxml2 \
31                    port:bzip2
32
33configure.pre_args  --prefix=${prefix} \
34                    --with-libxml=${prefix}
35
36variant python description {Add Python binding} {
37   depends_lib port:swig-python
38   configure.args-append --with-python
39}
40
41configure.universal_args-delete --disable-dependency-tracking
42
43use_parallel_build  no