blob: 837f5938e530be4427af397d64b51da721d1a903 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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
|