Ticket #46252: Portfile.2

File Portfile.2, 1.4 KB (added by rprogers@…, 9 years ago)

GMTK portfile updated for GMTK 1.4.1 release

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         wxWidgets 1.0
6wxWidgets.use     wxWidgets-3.0
7
8name              gmtk
9version           1.4.1
10categories        science
11platforms         darwin
12license           OSL-3
13maintainers       uw.edu:rprogers \
14                  openmaintainer
15description       Graphical Models Toolkit
16long_description  The Graphical Models Toolkit is an open source \
17                  toolkit for rapidly prototyping dynamic graphical models
18homepage          https://j.ee.washington.edu/trac/gmtk
19master_sites      http://melodi.ee.washington.edu/downloads/gmtk/
20checksums         rmd160 796e3974e0f08ed9ae8bb59249758e1c9a077770 \
21                  sha256 ca880ffcc1b6c03b32af1d77a2252818cd7ab034587fd31a2426bd9502c009ab
22depends_lib       port:hdf5 \
23                  port:${wxWidgets.port}
24configure.args    --with-wxdir=${wxWidgets.wxdir}
25post-destroot {
26    # Install example files not installed by the Makefile
27    file mkdir ${destroot}${prefix}/share/doc/${name}
28    file copy ${worksrcpath}/COPYING \
29        ${destroot}${prefix}/share/doc/${name}
30    file copy ${worksrcpath}/NEWS \
31        ${destroot}${prefix}/share/doc/${name}
32    file copy ${worksrcpath}/README \
33        ${destroot}${prefix}/share/doc/${name}
34}