blob: fbaeb33f9a6bd1e3b5a2999f7dd904b9b016f2f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
require 'formula'
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 :mysql
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
|