Ticket #38401: Portfile.2

File Portfile.2, 1.4 KB (added by sean@…, 11 years ago)

Remove duplicate make, use github portgroup, fetch tarball, remove specific compiler dependency, correct way to do pre-build stage?

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
6PortGroup               github 1.0
7
8github.setup            ged-lab khmer 2012-assembly-artifacts
9name                    py-khmer
10categories              python science
11platforms               darwin
12license                 BSD
13python.versions         26 27
14
15if {${subport} != ${name}} {
16    depends_lib-append  port:py${python.version}-screed
17}
18
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             node99.org:sean openmaintainer
22
23checksums               rmd160 ea6a584340cf04a535cf548e207d766c3d3e7866 \
24                        sha256 acacdb6257da593a7490fdad496d6c07438effd59b68709860c1fe10c3e1039c
25build.dir               ${worksrcpath}/python
26
27pre-build {
28    system -W ${worksrcpath}/lib "make CXX=${configure.cxx}"
29}