class Mysqlxx < Formula desc "C++ wrapper for MySQL's C API" homepage "https://tangentsoft.com/mysqlpp/home" url "https://tangentsoft.com/mysqlpp/releases/mysql++-3.2.3.tar.gz" sha256 "c804c38fe229caab62a48a6d0a5cb279460da319562f41a16ad2f0a0f55b6941" revision 2 bottle do cellar :any sha256 "3190a4350b89e6bcea9b80809409ae668b00aebbb6dda08cf260621a65324c42" => :high_sierra sha256 "a2333339d10b355368bf28a5d19c3b9a131f0ca62c0e874d718d998c6b474c34" => :sierra sha256 "a4bfd205239996eda7467fbb714834f529ced547babeaf467c678adb1cc73025" => :el_capitan end depends_on "mysql-client" def install mysql = Formula["mysql-client"] system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}", "--with-field-limit=40", "--with-mysql-lib=#{mysql.opt_lib}", "--with-mysql-include=#{mysql.opt_include}/mysql" system "make", "install" end test do (testpath/"test.cpp").write <<~EOS #include int main(int argc, char *argv[]) { mysqlpp::examples::CommandLine cmdline(argc, argv); if (!cmdline) { return 1; } return 0; } EOS system ENV.cxx, "test.cpp", "-I#{Formula["mysql-client"].opt_include}/mysql", "-L#{lib}", "-lmysqlpp", "-o", "test" system "./test", "-u", "foo", "-p", "bar" end end