59 lines
1.8 KiB
Ruby
59 lines
1.8 KiB
Ruby
class Cxxopts < Formula
|
|
desc "Lightweight C++ command-line option parser"
|
|
homepage "https://github.com/jarro2783/cxxopts"
|
|
url "https://github.com/jarro2783/cxxopts/archive/v2.1.2.tar.gz"
|
|
sha256 "95f524c6615a2067e935e02ef74b013b17efa339df0a3c9db3e91fc0afbaf269"
|
|
head "https://github.com/jarro2783/cxxopts.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "0d93d263719727fd6844488a3e2c46207634ded0bcec26157b471327ca581e7e" => :mojave
|
|
sha256 "0d93d263719727fd6844488a3e2c46207634ded0bcec26157b471327ca581e7e" => :high_sierra
|
|
sha256 "c90e201b7a4dbc127b20db001d16870910707bd8023040bed8614b2b60123acc" => :sierra
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
|
|
def install
|
|
ENV.cxx11
|
|
|
|
mkdir "build" do
|
|
system "cmake", "..", *std_cmake_args,
|
|
"-DCXXOPTS_BUILD_EXAMPLES=OFF",
|
|
"-DCXXOPTS_BUILD_TESTS=OFF"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cc").write <<~EOS
|
|
#include <iostream>
|
|
#include <cstdlib>
|
|
#include <cxxopts.hpp>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
cxxopts::Options options(argv[0]);
|
|
|
|
std::string input;
|
|
options.add_options()
|
|
("e,echo", "String to be echoed", cxxopts::value(input))
|
|
("h,help", "Print this help", cxxopts::value<bool>()->default_value("false"));
|
|
|
|
auto result = options.parse(argc, argv);
|
|
|
|
if (result.count("help")) {
|
|
std::cout << options.help() << std::endl;
|
|
std::exit(0);
|
|
}
|
|
|
|
std::cout << input << std::endl;
|
|
|
|
return 0;
|
|
}
|
|
EOS
|
|
|
|
system ENV.cxx, "-std=c++11", "test.cc", "-I#{include}", "-o", "test"
|
|
assert_equal "echo string", shell_output("./test -e 'echo string'").strip
|
|
assert_equal "echo string", shell_output("./test --echo='echo string'").strip
|
|
end
|
|
end
|