2a43a41fad
The report was for 2336, but I can build it with 2335. Closes Homebrew/homebrew#7439. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
18 lines
468 B
Ruby
18 lines
468 B
Ruby
require 'formula'
|
|
|
|
class MysqlConnectorC < Formula
|
|
homepage 'http://dev.mysql.com/downloads/connector/c/6.0.html'
|
|
url 'http://mysql.llarian.net/Downloads/Connector-C/mysql-connector-c-6.0.2.tar.gz'
|
|
md5 'f922b778abdd25f7c1c95a8329144d56'
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
fails_with_llvm "Error: unsupported inline asm.", :build => 2334
|
|
|
|
def install
|
|
system "cmake . #{std_cmake_parameters}"
|
|
system 'make'
|
|
ENV.j1
|
|
system 'make install'
|
|
end
|
|
end
|