Ticket #55449: Portfile

File Portfile, 1.0 KB (added by someuser12, 6 years ago)

Portfile proposal

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
3PortSystem          1.0
4PortGroup           python 1.0
5PortGroup           github 1.0
6
7set _name           pycrlibm
8
9name                py-${_name}
10github.setup        taschini ${_name} 1.0.3
11categories-append   math
12platforms           darwin
13license             LGPL
14maintainers         nomaintainer
15
16description         Python bindings for CRlibm
17long_description    \
18    Python bindings for CRlibm, an efficient and proven \
19    correctly-rounded mathematical library.
20
21checksums           md5     0112b10d76fa2cb72ecc6ee61a91a509 \
22                    rmd160  03fb4b95a47173089151fd824129561c06c2cdeb \
23                    sha256  31b6e18252395a153aa25c933cb04778828531152c5c58a6707492833ba15109
24
25python.versions     27 34 35 36
26
27if {${name} ne ${subport}} {
28    depends_build-append    port:py${python.version}-setuptools
29
30    depends_lib-append      port:crlibm
31
32    livecheck.type      none
33}