class Pugixml < Formula desc "Pugixml is a light-weight C++ XML processing library" homepage "http://pugixml.org" url "https://github.com/zeux/pugixml/releases/download/v1.6/pugixml-1.6.tar.gz" sha256 "473705c496d45ee6a74f73622b175dfb5dde0de372c4dc61a5acb964516cd9de" bottle do cellar :any sha256 "27a9b98dde133f5871b13af86d5e9eee120681c3e3f3522bb3ed8469a5057191" => :yosemite sha256 "a8e856b317d735c1c6f6d6d0f10827c2f093235daa678e3bc67055195989fe19" => :mavericks sha256 "abefae3200fb57a4ef0d6a3b6f8d3bf85a6d46170ecedf383068de9c049d76ca" => :mountain_lion end option "with-shared", "Build shared instead of static library" depends_on "cmake" => :build def install shared = (build.with? "shared") ? "ON" : "OFF" args = std_cmake_args args << "-DBUILD_SHARED_LIBS=#{shared}" cd "scripts" do system "cmake", ".", *args system "make", "install" end (lib/"pkgconfig/pugixml.pc").write pc_file end def pc_file; <<-EOS.undent prefix=#{HOMEBREW_PREFIX} exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${exec_prefix}/include Name: pugixml Description: Pugixml is a light-weight C++ XML processing library Version: 1.6 Libs: -L${libdir} -lpugixml Cflags: -I${includedir} EOS end test do (testpath/"test.cpp").write <<-EOS.undent #include #include #include int main(int argc, char *argv[]) { pugi::xml_document doc; pugi::xml_parse_result result = doc.load_file("test.xml"); assert(result); assert(strcmp(doc.child_value("root"), "Hello world!") == 0); } EOS (testpath/"test.xml").write <<-EOS.undent Hello world! EOS system ENV.cc, "test.cpp", "-L#{lib}", "-lpugixml", "-lstdc++", "-o", "test" system "./test" end end