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

class MysqlConnectorCxx < Formula
  homepage 'http://dev.mysql.com/downloads/connector/cpp/'
  url 'http://mysql.he.net/Downloads/Connector-C++/mysql-connector-c++-1.1.3.tar.gz'
  sha1 'b817dccf3a4e340b6a972028ceb7eededaaebd6f'

  depends_on 'cmake' => :build
  depends_on 'boost' => :build

  def install
    system "cmake", ".", *std_cmake_args
    ENV.j1
    system "make install"
  end
end