diff options
| author | mike@arpaia.co | 2015-02-24 16:37:41 -0800 |
|---|---|---|
| committer | Misty De Meo | 2015-02-24 17:23:26 -0800 |
| commit | f231cd2038fe359037e0737eb3d4bb0da1013d09 (patch) | |
| tree | fa248d8c21f608f5017ff9b45bcf2dec6a570d8a /Library | |
| parent | 2dc5c414dfa93595787c9801d4f4f6e0659e6d78 (diff) | |
| download | homebrew-f231cd2038fe359037e0737eb3d4bb0da1013d09.tar.bz2 | |
osquery 1.4.2
Closes #37165.
Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/osquery.rb | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/Library/Formula/osquery.rb b/Library/Formula/osquery.rb index 5b3170eee..881d03aa6 100644 --- a/Library/Formula/osquery.rb +++ b/Library/Formula/osquery.rb @@ -3,7 +3,7 @@ require "formula" class Osquery < Formula homepage "http://osquery.io" # pull from git tag to get submodules - url "https://github.com/facebook/osquery.git", :tag => "1.4.1" + url "https://github.com/facebook/osquery.git", :tag => "1.4.2" bottle do sha1 "67c52b530899231866d4e035b39a843cb514b3d6" => :yosemite @@ -16,12 +16,11 @@ class Osquery < Formula depends_on :macos => :mavericks depends_on "cmake" => :build - - depends_on "boost" - depends_on "gflags" + depends_on "boost" => :build + depends_on "gflags" => :build + depends_on "rocksdb" => :build + depends_on "thrift" => :build depends_on "openssl" - depends_on "rocksdb" - depends_on "thrift" resource "markupsafe" do url "https://pypi.python.org/packages/source/M/MarkupSafe/MarkupSafe-0.23.tar.gz" @@ -43,12 +42,9 @@ class Osquery < Formula "--record=installed.txt"} end - mkdir "generated" system "cmake", ".", *std_cmake_args system "make" system "make", "install" - - prefix.install "tools/deployment/com.facebook.osqueryd.plist" end plist_options :startup => true, :manual => "osqueryd" |
