Ticket #43080: Portfile

File Portfile, 1.8 KB (added by tre@…, 10 years ago)
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-apps
7version             1.4.1
8categories          science
9platforms           darwin
10universal_variant   no
11
12license             LGPL-3
13maintainers         fu-berlin.de:david.weese \
14                    fu-berlin.de:knut.reinert
15
16description         Applications distributed with the SeqAn library
17
18long_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
23homepage            http://www.seqan.de/projects
24
25
26master_sites        http://packages.seqan.de/${name}
27use_bzip2           yes
28
29# distname and worksrcdir should be identical in future releases
30platform 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
37platform darwin i386 {
38    distname            ${name}-${version}-Mac-i686
39    worksrcdir          ${name}-${version}-Darwin-i686
40    checksums           rmd160  bef9796f0002253a0160b071bce216b027e1b55f \
41                        sha256  187f917a55f1d0f4de553079d42c016d4659f509d33a8573544396675257f754
42}
43
44
45configure {}
46
47build {}
48
49destroot {
50    foreach filename [glob ${worksrcpath}/bin/*] {
51        file copy $filename ${destroot}${prefix}/bin
52    }
53    file copy ${worksrcpath}/share/doc ${destroot}${prefix}/share
54}