Ticket #38401: Portfile

File Portfile, 1.4 KB (added by sean@…, 11 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
5PortGroup               python 1.0
6
7name                    py-khmer
8version                 0.4
9categories              python science
10platforms               darwin
11license                 BSD
12python.versions         26 27
13
14if {${subport} != ${name}} {
15    depends_lib         port:py${python.version}-screed
16}
17
18homepage                https://github.com/ged-lab/khmer
19description             khmer is a library and toolkit for doing k-mer-based dataset analysis and transformations.
20long_description        khmer is a library and toolkit for doing k-mer-based dataset analysis and transformations. Our focus in developing it has been on scaling assembly of metagenomes and mRNA. khmer can be used for a number of transformations, include inexact transformations (abundance filtering and error trimming) and exact transformations (graphsize filtering, to throw away disconnected reads\; and partitioning, to split reads into disjoint sets).
21maintainers             openmaintainer node99.org:sean
22
23fetch.type              git
24git.url                 https://github.com/ged-lab/khmer.git
25build.dir               ${worksrcpath}/python
26configure.compiler      clang
27
28pre-build {
29    system              "cd ${worksrcpath}; make"
30}