homebrew-core/Formula/mysql-proxy.rb
Brett Koonce 89f6e48aab mysql-proxy 0.8.2
Closes Homebrew/homebrew#13884.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-08-02 00:07:46 -05:00

47 lines
1.2 KiB
Ruby

require 'formula'
class MySqlInstalled < Requirement
def message; <<-EOS.undent
MySQL is required to install.
You can install this with Homebrew using:
brew install mysql-connector-c
For MySQL client libraries only.
brew install mysql
For MySQL server.
Or you can use an official installer from:
http://dev.mysql.com/downloads/mysql/
EOS
end
def satisfied?
which 'mysql_config'
end
def fatal?
true
end
end
class MysqlProxy < Formula
homepage 'https://launchpad.net/mysql-proxy'
url 'https://launchpad.net/mysql-proxy/0.8/0.8.2/+download/mysql-proxy-0.8.2.tar.gz'
sha1 '3ae4f2f68849cfd95eeaf033af8df78d643dbf4d'
depends_on MySqlInstalled.new
depends_on 'pkg-config' => :build
depends_on 'glib'
depends_on 'libevent'
depends_on 'lua'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
# Ugh, don't dump these directly into /usr/local/include.
# Use a subfolder, please.
"--includedir=#{include}/mysqlproxy"
system "make install"
# Copy over the example scripts
(share+"mysqlproxy").install Dir['examples/*.lua']
end
end