homebrew-core/Formula/mysql-connector-c++.rb
Xiyue Deng 2d6b139016 New formula: MySQL Connector/C++
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-09-13 20:39:27 -05:00

16 lines
408 B
Ruby

require 'formula'
class MysqlConnectorCxx < Formula
url 'http://mysql.he.net/Downloads/Connector-C++/mysql-connector-c++-1.1.0.tar.gz'
homepage 'http://dev.mysql.com/downloads/connector/cpp/'
md5 '0981bda6548a8c8233ffce2b6e4b2a23'
depends_on 'cmake' => :build
depends_on 'boost' => :build
def install
system "cmake . #{std_cmake_parameters}"
ENV.j1
system "make install"
end
end