homebrew-core/Formula/mysql-connector-c.rb
Viktor Szakats 4c53cd1ab6 mysql-connector: use https url and homepage
Closes Homebrew/homebrew#38657.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-04-14 22:38:50 -07:00

34 lines
1 KiB
Ruby

class MysqlConnectorC < Formula
homepage "https://dev.mysql.com/downloads/connector/c/"
url "https://dev.mysql.com/get/Downloads/Connector-C/mysql-connector-c-6.1.6-src.tar.gz"
sha256 "2222433012c415871958b61bc4f3683e1ebe77e3389f698b267058c12533ea78"
bottle do
sha256 "b7cc223beca61228800d26878f7882b23afeb3a8a4297c1b2b84a9faa604a7e4" => :yosemite
sha256 "c9a3c310c3eb3f9a0284b6b337bc531e0bb1e5351134fa7d8b26d331aaaebd7b" => :mavericks
sha256 "5928f92ae51c122d69863ecfdda5f055bc0f6e8aea02c8ae484f3148747f5984" => :mountain_lion
end
depends_on "cmake" => :build
conflicts_with "mysql", "mariadb", "percona-server",
:because => "both install MySQL client libraries"
fails_with :llvm do
build 2334
cause "Unsupported inline asm"
end
def install
system "cmake", ".", *std_cmake_args
system "make"
ENV.j1
system "make", "install"
end
test do
system "#{bin}/mysql_config", "--cflags"
system "#{bin}/mysql_config", "--include"
system "#{bin}/mysql_config", "--libs"
end
end