homebrew-core/Formula/mysql-connector-c++@1.1.rb
2019-10-02 19:41:25 -04:00

42 lines
1.3 KiB
Ruby

class MysqlConnectorCxxAT11 < Formula
desc "MySQL database connector for C++ applications"
homepage "https://dev.mysql.com/downloads/connector/cpp/"
url "https://dev.mysql.com/get/Downloads/Connector-C++/mysql-connector-c++-1.1.12.tar.gz"
sha256 "ffc4604064c8861e2c2ece80dc4830ec1e8816de4d54f0d3ca0c451234068751"
bottle do
cellar :any
sha256 "27a758ec59879d023b5337755a7e54f979b531da1ff420d1f0f3d7839e4f2039" => :mojave
sha256 "22b41c7726bb2452a2457a1b7bc55a8d5688b4c74117bc6fbe31de84e47b081e" => :high_sierra
sha256 "b8dbe04b82cce2cb8d3a982043d75473fac9e7c7920866cb525bb9d0b240d315" => :sierra
end
keg_only :versioned_formula
depends_on "boost" => :build
depends_on "cmake" => :build
depends_on "mysql-client"
depends_on "openssl@1.1"
def install
system "cmake", ".", *std_cmake_args
system "make", "install"
end
test do
(testpath/"test.cpp").write <<~EOS
#include <cppconn/driver.h>
int main(void) {
try {
sql::Driver *driver = get_driver_instance();
} catch (sql::SQLException &e) {
return 1;
}
return 0;
}
EOS
system ENV.cxx, "test.cpp", "-I#{Formula["mysql-client"].opt_include}",
"-I#{include}", "-L#{lib}", "-lmysqlcppconn", "-o", "test"
system "./test"
end
end