2011-04-06 06:10:42 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Mariadb < Formula
|
|
|
|
homepage 'http://mariadb.org/'
|
2012-08-13 20:40:11 +00:00
|
|
|
url 'http://ftp.osuosl.org/pub/mariadb/mariadb-5.3.7/kvm-tarbake-jaunty-x86/mariadb-5.3.7.tar.gz'
|
2012-07-12 15:31:28 +00:00
|
|
|
sha1 '1ee2ef4895aefabd66b4884c382ba2cd1f7bbe2d'
|
2011-04-06 06:10:42 +00:00
|
|
|
|
|
|
|
depends_on 'readline'
|
|
|
|
|
2012-08-13 20:40:11 +00:00
|
|
|
option :universal
|
|
|
|
option 'with-tests', 'Keep test when installing'
|
|
|
|
option 'with-bench', 'Keep benchmark app when installing'
|
|
|
|
option 'client-only', 'Install only client tools'
|
|
|
|
|
2012-07-28 16:02:46 +00:00
|
|
|
conflicts_with 'mysql',
|
|
|
|
:because => "mariadb and mysql install the same binaries."
|
|
|
|
conflicts_with 'percona-server',
|
|
|
|
:because => "mariadb and percona-server install the same binaries."
|
|
|
|
|
2012-04-01 17:48:59 +00:00
|
|
|
fails_with :clang do
|
2012-08-09 21:40:43 +00:00
|
|
|
build 421
|
2012-04-01 17:48:59 +00:00
|
|
|
end
|
|
|
|
|
2011-04-06 06:10:42 +00:00
|
|
|
def install
|
2012-08-17 16:17:52 +00:00
|
|
|
# Build without compiler or CPU specific optimization flags to facilitate
|
|
|
|
# compilation of gems and other software that queries `mysql-config`.
|
|
|
|
ENV.minimal_optimization
|
|
|
|
|
2012-01-27 02:08:03 +00:00
|
|
|
ENV.append 'CXXFLAGS', '-fno-omit-frame-pointer -felide-constructors'
|
2011-04-06 06:10:42 +00:00
|
|
|
|
|
|
|
# Make universal for bindings to universal applications
|
2012-08-13 20:40:11 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
2011-04-06 06:10:42 +00:00
|
|
|
|
|
|
|
configure_args = [
|
|
|
|
"--without-docs",
|
|
|
|
"--without-debug",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--localstatedir=#{var}/mysql",
|
|
|
|
"--sysconfdir=#{etc}",
|
|
|
|
"--with-extra-charsets=complex",
|
|
|
|
"--enable-assembler",
|
|
|
|
"--enable-thread-safe-client",
|
|
|
|
"--with-big-tables",
|
2011-06-15 17:38:55 +00:00
|
|
|
"--with-plugin-aria",
|
|
|
|
"--with-aria-tmp-tables",
|
|
|
|
"--without-plugin-innodb_plugin",
|
|
|
|
"--with-mysqld-ldflags=-static",
|
|
|
|
"--with-client-ldflags=-static",
|
|
|
|
"--with-plugins=max-no-ndb",
|
|
|
|
"--with-embedded-server",
|
|
|
|
"--with-libevent",
|
2011-04-06 06:10:42 +00:00
|
|
|
]
|
|
|
|
|
2012-08-13 20:40:11 +00:00
|
|
|
configure_args << "--without-server" if build.include? 'client-only'
|
2011-04-06 06:10:42 +00:00
|
|
|
|
|
|
|
system "./configure", *configure_args
|
|
|
|
system "make install"
|
|
|
|
|
2012-02-12 22:40:05 +00:00
|
|
|
bin.install_symlink "#{libexec}/mysqld"
|
|
|
|
bin.install_symlink "#{share}/mysql/mysql.server"
|
2011-04-06 06:10:42 +00:00
|
|
|
|
2012-08-13 20:40:11 +00:00
|
|
|
(prefix+'mysql-test').rmtree unless build.include? 'with-tests' # save 121MB!
|
|
|
|
(prefix+'sql-bench').rmtree unless build.include? 'with-bench'
|
2011-04-06 06:10:42 +00:00
|
|
|
|
2011-12-31 05:56:52 +00:00
|
|
|
plist_path.write startup_plist
|
|
|
|
plist_path.chmod 0644
|
2011-04-06 06:10:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
Set up databases with:
|
|
|
|
unset TMPDIR
|
|
|
|
mysql_install_db
|
|
|
|
|
|
|
|
If this is your first install, automatically load on login with:
|
2012-02-04 14:57:53 +00:00
|
|
|
cp #{plist_path} ~/Library/LaunchAgents/
|
2011-12-31 05:56:52 +00:00
|
|
|
launchctl load -w ~/Library/LaunchAgents/#{plist_path.basename}
|
2011-04-06 06:10:42 +00:00
|
|
|
|
2012-02-04 14:57:53 +00:00
|
|
|
If this is an upgrade and you already have the #{plist_path.basename} loaded:
|
2011-12-31 05:56:52 +00:00
|
|
|
launchctl unload -w ~/Library/LaunchAgents/#{plist_path.basename}
|
2012-02-04 14:57:53 +00:00
|
|
|
cp #{plist_path} ~/Library/LaunchAgents/
|
2011-12-31 05:56:52 +00:00
|
|
|
launchctl load -w ~/Library/LaunchAgents/#{plist_path.basename}
|
2011-04-06 06:10:42 +00:00
|
|
|
|
|
|
|
Note on upgrading:
|
2012-02-04 14:57:53 +00:00
|
|
|
We overwrite any existing #{plist_path.basename} in ~/Library/LaunchAgents
|
2011-04-06 06:10:42 +00:00
|
|
|
if we are upgrading because previous versions of this brew created the
|
|
|
|
plist with a version specific program argument.
|
|
|
|
|
|
|
|
Or start manually with:
|
|
|
|
mysql.server start
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
def startup_plist; <<-EOPLIST.undent
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
|
|
<plist version="1.0">
|
|
|
|
<dict>
|
|
|
|
<key>KeepAlive</key>
|
|
|
|
<true/>
|
|
|
|
<key>Label</key>
|
2011-12-31 05:56:52 +00:00
|
|
|
<string>#{plist_name}</string>
|
2011-04-06 06:10:42 +00:00
|
|
|
<key>Program</key>
|
2011-12-31 22:13:31 +00:00
|
|
|
<string>#{HOMEBREW_PREFIX}/bin/mysqld_safe</string>
|
2011-04-06 06:10:42 +00:00
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
|
|
|
<key>UserName</key>
|
|
|
|
<string>#{`whoami`.chomp}</string>
|
|
|
|
<key>WorkingDirectory</key>
|
|
|
|
<string>#{var}</string>
|
|
|
|
</dict>
|
|
|
|
</plist>
|
|
|
|
EOPLIST
|
|
|
|
end
|
2011-09-12 19:55:17 +00:00
|
|
|
end
|