fa308f958f
Closes Homebrew/homebrew#24156. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
16 lines
413 B
Ruby
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
|