aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mysql-connector-c.rb
blob: f135f7dc8293c67ff5eb94776a25621fe11216dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'brewkit'

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.1.tar.gz'
  @md5='348a869fa72957062ea4e7ad3865623c'

  def deps
    'cmake'
  end

  def install
    system "cmake . #{std_cmake_parameters}"
    system 'make install'
  end
end