aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mysql-connector-c.rb
blob: a7aa7b554f75d3bbf17f18e0ad2f1c1845fcdfef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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'

  def install
    fails_with_llvm "error: unsupported inline asm"
    system "cmake . #{std_cmake_parameters}"
    system 'make'
    ENV.j1
    system 'make install'
  end
end