Ticket #38146: Portfile.f

File Portfile.f, 1.6 KB (added by FlorianFranzen@…, 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$
3PortSystem      1.0
4
5name            maskedKlustaKwik
6version         3.0.2
7categories      science
8platforms       darwin
9license         GPL-2
10maintainers     gmail.com:FlorianFranzen
11
12description     Program for automatic clustering of continuous data into a mixture of Gaussians.
13long_description    KlustaKwik is an open-source program for \
14                    automatic clustering of continuous data into \
15                    a mixture of Gaussians. The program was \
16                    originally developed for sorting of neuronal \
17                    action potentials, but can be applied to any \
18                    sort of data.
19homepage        http://sourceforge.net/projects/klustakwik/
20
21master_sites        sourceforge:project/klustakwik/${name}/
22use_bzip2               yes
23extract.suffix          .bz2
24worksrcdir      MKK_sourceforge
25checksums       rmd160  1d723b72ed17c285a160856c4f3131c1f3451896 \
26                        sha256  acdd9a71675d2c0b64809d7f67118eebdb42df1eddfc170b9a00fc8a37dac5b6
27
28patchfiles              patch-makefile.diff
29
30configure       no
31variant universal   {}
32   
33build.target
34build.args              CXX=${configure.cxx} \
35                        CPPFLAGS="${configure.cppflags}" \
36                        CXXFLAGS="${configure.cxxflags} \
37                            [get_canonical_archflags cxx]" \
38                    LDFLAGS="${configure.ldflags} \
39                        [get_canonical_archflags ld]"
40destroot  { 
41    xinstall ${worksrcpath}/KlustaKwik ${destroot}${prefix}/bin/${name}
42}