Ticket #46348: Portfile

File Portfile, 1.2 KB (added by jul_bsd@…, 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
5
6PortGroup           github 1.0
7
8github.setup        facebook osquery 1.4.0
9categories          sysutils
10license             BSD
11platforms           darwin
12homepage            http://osquery.io/
13maintainers         yahoo.fr:jul_bsd openmaintainer
14description         SQL powered operating system instrumentation, monitoring, and analytics
15long_description    ${description}
16
17checksums           rmd160  0d5750a6ec832a58a39e6ad37f6ef4f094ef6aa0 \
18                    sha256  c3513723fe574b257d7f763a848a1275307215a8c69c2fa995717fdb1507062e
19
20depends_build       port:cmake
21depends_lib         port:boost \
22                    port:gflags \
23                    port:google-glog \
24                    port:openssl \
25                    port:rocksdb \
26                    port:thrift \
27                    port:py27-jinja2 \
28                    port:py27-markupsafe
29
30## FIXME! thrift fails to build
31
32use_configure       no
33#build.cmd           cmake
34
35pre-build {
36    system "cd ${worksrcpath} && make deps"
37}
38
39test.run            yes
40