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-apps |
---|
7 | version 1.4.1 |
---|
8 | categories science |
---|
9 | platforms darwin |
---|
10 | universal_variant no |
---|
11 | |
---|
12 | license LGPL-3 |
---|
13 | maintainers fu-berlin.de:david.weese \ |
---|
14 | fu-berlin.de:knut.reinert |
---|
15 | |
---|
16 | description Applications distributed with the SeqAn library |
---|
17 | |
---|
18 | long_description SeqAn applications for the analysis of large sets of sequences, e.g. \ |
---|
19 | read mapping, genome comparison, local alignment, data mining. \ |
---|
20 | If not stated otherwise, the SeqAn applications are licensed under \ |
---|
21 | the GNU Lesser General Public License version 3. |
---|
22 | |
---|
23 | homepage http://www.seqan.de/projects |
---|
24 | |
---|
25 | |
---|
26 | master_sites http://packages.seqan.de/${name} |
---|
27 | use_bzip2 yes |
---|
28 | |
---|
29 | # distname and worksrcdir should be identical in future releases |
---|
30 | platform darwin x86_64 { |
---|
31 | distname ${name}-${version}-Mac-x86_64 |
---|
32 | worksrcdir ${name}-${version}-Darwin-x86_64 |
---|
33 | checksums rmd160 57ec09ea5f496ae6bc4fddc5cafa71536f6ad789 \ |
---|
34 | sha256 ec01b03a82256eb22d4786f10088fec231bb3446ea38eeb6698f4099a4721944 |
---|
35 | } |
---|
36 | |
---|
37 | platform darwin i386 { |
---|
38 | distname ${name}-${version}-Mac-i686 |
---|
39 | worksrcdir ${name}-${version}-Darwin-i686 |
---|
40 | checksums rmd160 bef9796f0002253a0160b071bce216b027e1b55f \ |
---|
41 | sha256 187f917a55f1d0f4de553079d42c016d4659f509d33a8573544396675257f754 |
---|
42 | } |
---|
43 | |
---|
44 | |
---|
45 | configure {} |
---|
46 | |
---|
47 | build {} |
---|
48 | |
---|
49 | destroot { |
---|
50 | foreach filename [glob ${worksrcpath}/bin/*] { |
---|
51 | file copy $filename ${destroot}${prefix}/bin |
---|
52 | } |
---|
53 | file copy ${worksrcpath}/share/doc ${destroot}${prefix}/share |
---|
54 | } |
---|