blob: 5bf45368ce34915200c2bed5d8b23c60b28103b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class MysqlConnectorC <Formula
@homepage='http://dev.mysql.com/downloads/connector/c/6.0.html'
@url='http://mysql.llarian.net/Downloads/Connector-C/mysql-connector-c-6.0.2.tar.gz'
@md5='67e478df66e8f66536e54388cfa29854'
depends_on 'cmake'
def install
system "cmake . #{std_cmake_parameters}"
system 'make install'
end
end
|