Ticket #48111: Portfile

File Portfile, 1.3 KB (added by joshuacookebarnes@…, 9 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
6PortGroup           github 1.0
7
8github.setup        pearu pylibnidaqmx c3f76199865166a3c426a82a2f22fa877aacd1a8
9version             20140826
10
11name                py-libnidaqmx
12categories-append   science
13description         Python wrapper for the NI-DAQmx driver software
14long_description    The PyLibNIDAQmx project provides a Python package nidaqmx\
15                                        that wraps the NI-DAQmx driver software (which must be\
16                                        installed separately) for Python using ctypes.
17homepage            http://pylibnidaqmx.googlecode.com/
18
19license             BSD
20platforms           darwin
21supported_archs     noarch
22maintainers         nomaintainer
23
24checksums           md5    cb06c26c16742e3b437f468b8c90091f \
25                    rmd160 71473f8eb9954b5a03296da2845a86736705e184 \
26                    sha256 522547cf714f2cef51d90301d9596fd5b73e828c9f3d5871ac6f29c5981b3dde
27
28python.versions     26 27
29
30if {${name} ne ${subport}} {
31        depends_run-append      port:py${python.version}-numpy
32    depends_build-append    port:py${python.version}-setuptools\
33                            port:py${python.version}-sphinx
34    test.run                yes
35}
36
37livecheck.type          none