homebrew-core/Formula/osquery.rb
Viktor Szakats e7095bcc58 osquery: use SSL/TLS homepage URL
Closes Homebrew/homebrew#39395.

Signed-off-by: Tim D. Smith <git@tim-smith.us>
2015-05-05 15:43:21 -07:00

62 lines
2 KiB
Ruby

require "formula"
class Osquery < Formula
homepage "https://osquery.io"
# pull from git tag to get submodules
url "https://github.com/facebook/osquery.git", :tag => "1.4.5", :revision => "3131a97d9511ed92d65afadf1a049a6425ec6eca"
bottle do
sha256 "292711f22175d0efb61710f1cf5e57f3f9a1cba97dbbe3d3e8190ee5b384e904" => :yosemite
sha256 "b29dc293b5c7e68250c6163f6528595ea2dd37d6f75a1c435c17971297e0efb4" => :mavericks
end
# Build currently fails on Mountain Lion:
# https://github.com/facebook/osquery/issues/409
# Will welcome PRs to fix this!
depends_on :macos => :mavericks
depends_on "cmake" => :build
depends_on "boost" => :build
depends_on "doxygen" => :build
depends_on "gflags" => :build
depends_on "rocksdb" => :build
depends_on "thrift" => :build
depends_on "yara" => :build
depends_on "openssl"
resource "markupsafe" do
url "https://pypi.python.org/packages/source/M/MarkupSafe/MarkupSafe-0.23.tar.gz"
sha1 "cd5c22acf6dd69046d6cb6a3920d84ea66bdf62a"
end
resource "jinja2" do
url "https://pypi.python.org/packages/source/J/Jinja2/Jinja2-2.7.3.tar.gz"
sha1 "25ab3881f0c1adfcf79053b58de829c5ae65d3ac"
end
def install
ENV.prepend_create_path "PYTHONPATH", buildpath+"third-party/python/lib/python2.7/site-packages"
resources.each do |r|
r.stage { system "python", "setup.py", "install",
"--prefix=#{buildpath}/third-party/python/",
"--single-version-externally-managed",
"--record=installed.txt"}
end
system "cmake", ".", *std_cmake_args
system "make"
system "make", "install"
end
plist_options :startup => true, :manual => "osqueryd"
test do
require 'open3'
Open3.popen3("#{bin}/osqueryi") do |stdin, stdout, _|
stdin.write(".mode line\nSELECT count(version) as lines FROM osquery_info;")
stdin.close
assert_equal "lines = 1\n", stdout.read
end
end
end