homebrew-core/Formula/mysql-connector-c++.rb
Jack Nagel c7630f5ff4 Use new std_cmake_args method
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-05-22 22:22:00 -05:00

16 lines
404 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.0.tar.gz'
md5 '0981bda6548a8c8233ffce2b6e4b2a23'
depends_on 'cmake' => :build
depends_on 'boost' => :build
def install
system "cmake", ".", *std_cmake_args
ENV.j1
system "make install"
end
end