Ticket #56897: Portfile

File Portfile, 1.1 KB (added by kencu (Ken), 6 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
3PortSystem          1.0
4PortGroup           github 1.0
5
6github.setup        opsengine cpulimit 0.2 v
7
8categories          sysutils
9platforms           darwin
10maintainers         {kencu @kencu} openmaintainer
11license             GPL-2
12
13description         tool which limits the CPU usage of a process
14long_description    ${description}
15
16checksums           rmd160  87db83eb896531910c9d489b03e04edd75ecf090 \
17                    sha256  44e21f371b59103710ec0bfa1fb820eebaafd1a1da2a5ff930f7bed2d9964394 \
18                    size    14295
19
20use_configure       no
21patchfiles          patch-ifdefs.diff
22variant universal   {}
23
24build.env           CXX="${configure.cxx}" \
25                    CXXFLAGS="${configure.cxxflags} [get_canonical_archflags cxx]" \
26                    CC="${configure.cc}" \
27                    CFLAGS="${configure.cflags}" \
28                    LDFLAGS="${configure.ldflags}  [get_canonical_archflags ld]" \
29                    PREFIX=${prefix}
30
31destroot {
32    copy ${worksrcpath}/src/cpulimit ${destroot}${prefix}/bin
33}