From 77faaa20fbc07bf799c267fe865ff50abe4feeff Mon Sep 17 00:00:00 2001 From: FX Coudert Date: Fri, 14 Sep 2018 14:52:00 +0200 Subject: [PATCH] snappystream: remove options --- Formula/snappystream.rb | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Formula/snappystream.rb b/Formula/snappystream.rb index efc7a7e2fc..7ea27a9e84 100644 --- a/Formula/snappystream.rb +++ b/Formula/snappystream.rb @@ -15,12 +15,9 @@ class Snappystream < Formula depends_on "cmake" => :build depends_on "snappy" - depends_on "boost" => :optional def install - args = std_cmake_args + %w[. -DBUILD_TESTS=ON] - args << "-DWITH_BOOST_IOSTREAMS=1" if build.with? "boost" - system "cmake", *args + system "cmake", ".", *std_cmake_args, "-DBUILD_TESTS=ON" system "make", "all", "test", "install" end