Ticket #43072: Portfile.seqan.patch

File Portfile.seqan.patch, 2.2 KB (added by tre@…, 10 years ago)
  • Portfile

    old new  
    44PortSystem          1.0
    55
    66name                seqan
    7 version             1.3.1
    8 # 1 stealth update has occurred, see dist_subdir
     7version             1.4.1
    98categories          science
    109platforms           darwin
     10supported_archs     noarch
    1111
    1212license             BSD
    1313maintainers         fu-berlin.de:david.weese \
    1414                    fu-berlin.de:knut.reinert
    1515
    16 description         C++ Sequence Analysis Library
     16description         SeqAn - The C++ Sequence Analysis Library
    1717
    1818long_description    SeqAn is an open source C++ library of efficient algorithms \
    1919                    and data structures for the analysis of sequences with the \
    2020                    focus on biological data. The library is licensed under the \
    21                     3-clause BSD license except the applications which are GPL.
     21                    3-clause BSD license.
    2222
    2323homepage            http://www.seqan.de
    2424
    2525
    26 depends_build
    27 depends_lib         port:cmake port:python27
    28 
    29 master_sites        http://ftp.seqan.de/releases
    30 use_zip             yes
    31 dist_subdir         ${name}/${version}_1
    32 
    33 checksums           rmd160  cf19b391de789ec525d3b1e8164cf76a291beba6 \
    34                     sha256  87eebe73ace9ada2f4664a768ae212d4acc5fb3ce87702709c3d15bf2d153aeb
    35 
    36 configure.dir       ${worksrcpath}/cmake
    37 configure.ccache    no
    38 configure.cmd       cmake
    39 configure.pre_args  -DCMAKE_INSTALL_PREFIX=${prefix} \
    40                     -DCMAKE_VERBOSE_MAKEFILE=ON \
    41                     -DCMAKE_BUILD_TYPE=Release \
    42                     -DPYTHON_EXECUTABLE=${prefix}/bin/python2.7
    43 
    44 
    45 build.dir           ${worksrcpath}/cmake
    46 
     26master_sites        http://packages.seqan.de/${name}-library
     27use_bzip2           yes
     28distname            ${name}-library-${version}
     29checksums           rmd160  e2fe1284943c170e9c098202e286b550fd151238 \
     30                    sha256  50f0d29f3526723225c64bfb76c0598256afc08c2c6c4f343e6345b1d453894f
     31
     32use_configure       no
     33
     34build {}
     35
     36destroot {
     37    file copy ${worksrcpath}/include/seqan ${destroot}${prefix}/include
     38    file copy ${worksrcpath}/share/doc ${destroot}${prefix}/share
     39}