yaml-cpp: remove options

Closes #33620.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
This commit is contained in:
FX Coudert 2018-11-02 00:09:41 +01:00
parent 9402884e7d
commit 6199d9727c

View file

@ -12,21 +12,12 @@ class YamlCpp < Formula
sha256 "5ad764dbd25373bc0bd68b213c611650694fe69f36c90fcd746aa90bc876e8f3" => :el_capitan
end
option "with-static-lib", "Build a static library"
depends_on "cmake" => :build
needs :cxx11
def install
args = std_cmake_args
if build.with? "static-lib"
args << "-DBUILD_SHARED_LIBS=OFF"
else
args << "-DBUILD_SHARED_LIBS=ON"
end
system "cmake", ".", *args
system "cmake", ".", *std_cmake_args, "-DBUILD_SHARED_LIBS=ON"
system "make", "install"
end