Ticket #31429: Portfile

File Portfile, 1.4 KB (added by tre@…, 12 years ago)

SeqAn portfile

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                seqan
7version             1.3.1
8categories          science
9platforms           darwin
10
11license             BSD
12maintainers         fu-berlin.de:david.weese \
13                    fu-berlin.de:knut.reinert
14
15description         C++ Sequence Analysis Library
16
17long_description    SeqAn is an open source C++ library of efficient algorithms \
18                    and data structures for the analysis of sequences with the \
19                    focus on biological data. The library is licensed under the \
20                    3-clause BSD license except the applications which are GPL.
21
22homepage            http://www.seqan.de
23
24
25depends_build
26depends_lib         port:cmake port:python27
27
28master_sites        http://ftp.seqan.de/releases
29distname            ${name}-${version}
30checksums           md5     64ab18ea576ee365f9d8e21556121eec
31use_zip             yes
32
33configure.dir       ${worksrcpath}/cmake
34configure.ccache    no
35configure.cmd       cmake
36configure.pre_args  -DCMAKE_INSTALL_PREFIX=${prefix} \
37                    -DCMAKE_VERBOSE_MAKEFILE=ON \
38                    -DCMAKE_BUILD_TYPE=Release \
39                    -DPYTHON_EXECUTABLE=${prefix}/bin/python2.7
40
41
42build.dir           ${worksrcpath}/cmake
43