protobuf@2.5: remove options
This commit is contained in:
parent
284557d4f5
commit
d1a2ceeb6a
1 changed files with 1 additions and 5 deletions
|
@ -15,16 +15,12 @@ class ProtobufAT25 < Formula
|
|||
|
||||
keg_only :versioned_formula
|
||||
|
||||
# this will double the build time approximately if enabled
|
||||
option "with-test", "Run build-time check"
|
||||
option :cxx11
|
||||
|
||||
deprecated_option "with-python" => "with-python@2"
|
||||
|
||||
depends_on "python@2" => :optional
|
||||
|
||||
deprecated_option "with-check" => "with-test"
|
||||
|
||||
def install
|
||||
# Don't build in debug mode. See:
|
||||
# https://github.com/Homebrew/homebrew/issues/9279
|
||||
|
@ -36,7 +32,7 @@ class ProtobufAT25 < Formula
|
|||
"--prefix=#{prefix}",
|
||||
"--with-zlib"
|
||||
system "make"
|
||||
system "make", "check" if build.with?("test") || build.bottle?
|
||||
system "make", "check" if build.bottle?
|
||||
system "make", "install"
|
||||
|
||||
# Install editor support and examples
|
||||
|
|
Loading…
Reference in a new issue