Ticket #38399: Portfile.2

File Portfile.2, 1.9 KB (added by sean@…, 12 years ago)

Addressed the above issues, had to blacklist clang as a result

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                velvet
7version             1.2.08
8categories          science
9platforms           darwin
10license             GPL-3
11
12homepage            http://www.ebi.ac.uk/~zerbino/velvet
13description         Velvet is a set of algorithms manipulating de Bruijn graphs for genomic and de novo transcriptomic Sequence assembly.
14long_description    Velvet is a set of algorithms manipulating de Bruijn graphs \
15                    for genomic and de novo transcriptomic Sequence assembly. It was designed \
16                    for short read sequencing technologies, such as Solexa or 454 Sequencing \
17                    and was developed by Daniel Zerbino and Ewan Birney at the European \
18                    Bioinformatics Institute. The tool takes in short read sequences, removes \
19                    errors then produces high quality unique contigs. It then uses paired-end \
20                    read and long read information, when available, to retrieve the repeated \
21                    areas between contigs. It has also been implemented inside of commercial \
22                    packages, such as the Geneious Server.
23maintainers         node99.org:sean openmaintainer
24
25master_sites        http://www.ebi.ac.uk/~zerbino/velvet
26distname            ${name}_${version}
27extract.suffix      .tgz
28checksums           rmd160 03fe8348293d039dc4f93f691f3456fc2e2bacd5 \
29                    sha256 1caf3fff54f264641a6bdd2ebd2e418f275703ed46debaf12b582c64daca3a57
30worksrcdir          velvet
31use_configure       no
32build.target        velvetg velveth
33compiler.blacklist  clang
34build.args-append   CC=${configure.cc} \
35                    CXX=${configure.cxx} \
36                    CPP=${configure.cpp}
37
38destroot {
39    xinstall -W ${worksrcpath} velvetg velveth ${destroot}${prefix}/bin
40}