9251141fa6
The dependency is needed for building and it's linked so at runtime too. Closes Homebrew/homebrew#26464. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
17 lines
434 B
Ruby
17 lines
434 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
|
|
depends_on 'mysql'
|
|
|
|
def install
|
|
system "cmake", ".", *std_cmake_args
|
|
ENV.j1
|
|
system "make install"
|
|
end
|
|
end
|