class Libucl < Formula desc "Universal configuration library parser" homepage "https://github.com/vstakhov/libucl" url "https://github.com/vstakhov/libucl/archive/0.8.1.tar.gz" sha256 "a6397e179672f0e8171a0f9a2cfc37e01432b357fd748b13f4394436689d24ef" bottle do cellar :any rebuild 3 sha256 "1ffddb657d95f504ba3b7331f5dbbd995c5d237cda3f736e99182a16a8e8181d" => :mojave sha256 "dd5dbb4eb7e3d37816acc4f3bc2842c8e91caeb4a6f058eed75cab9d72192315" => :high_sierra sha256 "5c477e0feb163dc955e89eabf97cae445fefc9c920fe46073c85af348535d7cd" => :sierra sha256 "93e7d66507c386c9fe720b5f4c77d3b719574b7c311319cddc09bcbda659bce7" => :el_capitan end depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build depends_on "pkg-config" => :build def install system "./autogen.sh" args = %W[ --disable-debug --disable-dependency-tracking --disable-silent-rules --enable-utils --prefix=#{prefix} ] system "./configure", *args system "make", "install" end test do (testpath/"test.cpp").write <<~EOS #include #include #include int main(int argc, char **argv) { const std::string cfg = "foo = bar; section { flag = true; }"; std::string err; auto obj = ucl::Ucl::parse(cfg, err); assert(obj); assert(obj[std::string("foo")].string_value() == "bar"); assert(obj[std::string("section")][std::string("flag")].bool_value()); } EOS system ENV.cxx, "-std=c++11", "test.cpp", "-L#{lib}", "-lucl", "-o", "test" system "./test" end end