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 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name seqan |
---|
7 | version 1.3.1 |
---|
8 | categories science |
---|
9 | platforms darwin |
---|
10 | |
---|
11 | license BSD |
---|
12 | maintainers fu-berlin.de:david.weese \ |
---|
13 | fu-berlin.de:knut.reinert |
---|
14 | |
---|
15 | description C++ Sequence Analysis Library |
---|
16 | |
---|
17 | long_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 | |
---|
22 | homepage http://www.seqan.de |
---|
23 | |
---|
24 | |
---|
25 | depends_build |
---|
26 | depends_lib port:cmake port:python27 |
---|
27 | |
---|
28 | master_sites http://ftp.seqan.de/releases |
---|
29 | distname ${name}-${version} |
---|
30 | checksums md5 64ab18ea576ee365f9d8e21556121eec |
---|
31 | use_zip yes |
---|
32 | |
---|
33 | configure.dir ${worksrcpath}/cmake |
---|
34 | configure.ccache no |
---|
35 | configure.cmd cmake |
---|
36 | configure.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 | |
---|
42 | build.dir ${worksrcpath}/cmake |
---|
43 | |
---|