Ticket #38400: Portfile

File Portfile, 1.6 KB (added by sean@…, 12 years ago)

Updated, changed + to 'plus' in port name

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                ncbi-blastplus
7version             2.2.27
8categories          science
9platforms           darwin
10depends_lib         port:boost
11license             public-domain
12
13homepage            http://blast.ncbi.nlm.nih.gov
14description         The Basic Local Alignment Search Tool (BLAST) finds regions of local similarity between sequences.
15long_description    The Basic Local Alignment Search Tool (BLAST) finds regions \
16                    of local similarity between sequences. The program compares \
17                    nucleotide or protein sequences to sequence databases and \
18                    calculates the statistical significance of matches. BLAST \
19                    can be used to infer functional and evolutionary relationships \
20                    between sequences as well as help identify members of gene families.
21maintainers         node99.org:sean openmaintainer
22
23master_sites        ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/LATEST/
24distname            ncbi-blast-${version}+-src
25checksums           rmd160 d17ea505b26a1535a8433a57ea9c0c8714e5ea5f \
26                    sha256 2e01d2d3cb7eacea21229c28d6e4e3df4a8d18f465350a22391b13092ba6c685
27worksrcdir          ${distname}/c++
28
29configure.args-append --with-boost=${prefix} --without-debug --with-optimization --with-mt --with-dll
30
31destroot {
32    eval xinstall -m 755 [glob ${worksrcpath}/GCC*/bin/*] ${destroot}${prefix}/bin
33    eval xinstall -m 644 [glob ${worksrcpath}/GCC*/lib/*] ${destroot}${prefix}/lib
34}