homebrew-core/Formula/mysql-connector-c++.rb
asaph fa308f958f mysql-connector-c++ 1.1.3
Closes Homebrew/homebrew#24156.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-11-10 09:15:23 -08:00

16 lines
413 B
Ruby

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