2011-09-10 10:00:10 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class MysqlConnectorCxx < Formula
|
|
|
|
homepage 'http://dev.mysql.com/downloads/connector/cpp/'
|
2012-02-22 05:12:27 +00:00
|
|
|
url 'http://mysql.he.net/Downloads/Connector-C++/mysql-connector-c++-1.1.0.tar.gz'
|
2011-09-10 10:00:10 +00:00
|
|
|
md5 '0981bda6548a8c8233ffce2b6e4b2a23'
|
|
|
|
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
depends_on 'boost' => :build
|
|
|
|
|
|
|
|
def install
|
2012-05-22 21:37:04 +00:00
|
|
|
system "cmake", ".", *std_cmake_args
|
2011-09-10 10:00:10 +00:00
|
|
|
ENV.j1
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|