diff options
| author | mike@arpaia.co | 2015-01-20 16:06:22 -0800 |
|---|---|---|
| committer | Mike McQuaid | 2015-01-23 17:57:29 +0100 |
| commit | f064dd7f15c041ce49b8032d9f1513cf8c532dc2 (patch) | |
| tree | 4030e2d1896f9063d98772ad8d2f02498e7a29f2 /Library | |
| parent | e35a08c7c3ad7d0d46895da11577fa143df857bf (diff) | |
| download | homebrew-f064dd7f15c041ce49b8032d9f1513cf8c532dc2.tar.bz2 | |
osquery 1.3.1
updating osquery to 1.3.0
Bumping the version of osquery in homebrew to version 1.3.0
Closes #36088.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/osquery.rb | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Library/Formula/osquery.rb b/Library/Formula/osquery.rb index a7c99a121..3e803bc93 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.2.2" + url "https://github.com/facebook/osquery.git", :tag => "1.3.1" bottle do revision 1 @@ -36,12 +36,6 @@ class Osquery < Formula end def install - # Apply upstream commit to fix illegal hardware instruction: - # https://github.com/facebook/osquery/commit/20259a - # https://github.com/facebook/osquery/issues/563 - # https://github.com/Homebrew/homebrew/issues/35343 - inreplace "CMakeLists.txt", "-Wl,-all_load", "-Wl,-force_load" - ENV.prepend_create_path "PYTHONPATH", buildpath+"third-party/python/lib/python2.7/site-packages" resources.each do |r| @@ -52,6 +46,7 @@ class Osquery < Formula end system "cmake", ".", *std_cmake_args + system "make" system "make", "install" prefix.install "tools/deployment/com.facebook.osqueryd.plist" |
