homebrew-core/Formula/mysql-connector-c.rb

15 lines
363 B
Ruby
Raw Normal View History

require 'formula'
class MysqlConnectorC <Formula
@homepage='http://dev.mysql.com/downloads/connector/c/6.0.html'
2009-09-22 20:14:00 +00:00
@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