170 lines
5.4 KiB
Ruby
170 lines
5.4 KiB
Ruby
class PerconaServerAT56 < Formula
|
|
desc "Drop-in MySQL replacement"
|
|
homepage "https://www.percona.com"
|
|
url "https://www.percona.com/downloads/Percona-Server-5.6/Percona-Server-5.6.33-79.0/source/tarball/percona-server-5.6.33-79.0.tar.gz"
|
|
version "5.6.33-79.0"
|
|
sha256 "ed8372340740faca1f58735938823eaf65ffbda64a5c65b18d187b959afbd34e"
|
|
|
|
bottle do
|
|
sha256 "2b082440614716ef21ba7439436a4e25056b8135927a22934d6f7561c063a036" => :sierra
|
|
sha256 "641ba21975d68d30d4000607dedec3a09253efaedc6d85594a2e070f8ba97548" => :el_capitan
|
|
sha256 "4e2312fa0351ab2224d7f8424d0a024e1b496d58365ac90736e6ed72039888b3" => :yosemite
|
|
end
|
|
|
|
keg_only :versioned_formula
|
|
|
|
option "with-test", "Build with unit tests"
|
|
option "with-embedded", "Build the embedded server"
|
|
option "with-memcached", "Build with InnoDB Memcached plugin"
|
|
option "with-local-infile", "Build with local infile loading support"
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "pidof" unless MacOS.version >= :mountain_lion
|
|
depends_on "openssl"
|
|
|
|
# Where the database files should be located. Existing installs have them
|
|
# under var/percona, but going forward they will be under var/mysql to be
|
|
# shared with the mysql and mariadb formulae.
|
|
def datadir
|
|
@datadir ||= (var/"percona").directory? ? var/"percona" : var/"mysql"
|
|
end
|
|
|
|
def pour_bottle?
|
|
datadir == var/"mysql"
|
|
end
|
|
|
|
def install
|
|
# Don't hard-code the libtool path. See:
|
|
# https://github.com/Homebrew/homebrew/issues/20185
|
|
inreplace "cmake/libutils.cmake",
|
|
"COMMAND /usr/bin/libtool -static -o ${TARGET_LOCATION}",
|
|
"COMMAND libtool -static -o ${TARGET_LOCATION}"
|
|
|
|
args = %W[
|
|
-DCMAKE_INSTALL_PREFIX=#{prefix}
|
|
-DCMAKE_FIND_FRAMEWORK=LAST
|
|
-DCMAKE_VERBOSE_MAKEFILE=ON
|
|
-DMYSQL_DATADIR=#{datadir}
|
|
-DINSTALL_INCLUDEDIR=include/mysql
|
|
-DINSTALL_MANDIR=share/man
|
|
-DINSTALL_DOCDIR=share/doc/#{name}
|
|
-DINSTALL_INFODIR=share/info
|
|
-DINSTALL_MYSQLSHAREDIR=share/mysql
|
|
-DWITH_SSL=yes
|
|
-DDEFAULT_CHARSET=utf8
|
|
-DDEFAULT_COLLATION=utf8_general_ci
|
|
-DSYSCONFDIR=#{etc}
|
|
-DCOMPILATION_COMMENT=Homebrew
|
|
-DWITH_EDITLINE=system
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo
|
|
]
|
|
|
|
# PAM plugin is Linux-only at the moment
|
|
args.concat %w[
|
|
-DWITHOUT_AUTH_PAM=1
|
|
-DWITHOUT_AUTH_PAM_COMPAT=1
|
|
-DWITHOUT_DIALOG=1
|
|
]
|
|
|
|
# TokuDB is broken on MacOsX
|
|
# https://bugs.launchpad.net/percona-server/+bug/1531446
|
|
args.concat %w[-DWITHOUT_TOKUDB=1]
|
|
|
|
# To enable unit testing at build, we need to download the unit testing suite
|
|
if build.with? "test"
|
|
args << "-DENABLE_DOWNLOADS=ON"
|
|
else
|
|
args << "-DWITH_UNIT_TESTS=OFF"
|
|
end
|
|
|
|
# Build the embedded server
|
|
args << "-DWITH_EMBEDDED_SERVER=ON" if build.with? "embedded"
|
|
|
|
# Build with InnoDB Memcached plugin
|
|
args << "-DWITH_INNODB_MEMCACHED=ON" if build.with? "memcached"
|
|
|
|
# Make universal for binding to universal applications
|
|
if build.universal?
|
|
ENV.universal_binary
|
|
args << "-DCMAKE_OSX_ARCHITECTURES=#{Hardware::CPU.universal_archs.as_cmake_arch_flags}"
|
|
end
|
|
|
|
# Build with local infile loading support
|
|
args << "-DENABLED_LOCAL_INFILE=1" if build.with? "local-infile"
|
|
|
|
system "cmake", ".", *std_cmake_args, *args
|
|
system "make"
|
|
system "make", "install"
|
|
|
|
# Don't create databases inside of the prefix!
|
|
# See: https://github.com/Homebrew/homebrew/issues/4975
|
|
rm_rf prefix+"data"
|
|
|
|
# Link the setup script into bin
|
|
bin.install_symlink prefix/"scripts/mysql_install_db"
|
|
|
|
# Fix up the control script and link into bin
|
|
inreplace "#{prefix}/support-files/mysql.server" do |s|
|
|
s.gsub!(/^(PATH=".*)(")/, "\\1:#{HOMEBREW_PREFIX}/bin\\2")
|
|
# pidof can be replaced with pgrep from proctools on Mountain Lion
|
|
s.gsub!(/pidof/, "pgrep") if MacOS.version >= :mountain_lion
|
|
end
|
|
|
|
bin.install_symlink prefix/"support-files/mysql.server"
|
|
|
|
# mysqlaccess deprecated on 5.6.17, and removed in 5.7.4.
|
|
# See: https://bugs.mysql.com/bug.php?id=69012
|
|
# Move mysqlaccess to libexec
|
|
libexec.mkpath
|
|
mv "#{bin}/mysqlaccess", libexec
|
|
mv "#{bin}/mysqlaccess.conf", libexec
|
|
end
|
|
|
|
def post_install
|
|
# Make sure that data directory exists
|
|
datadir.mkpath
|
|
unless File.exist? "#{datadir}/mysql/user.frm"
|
|
ENV["TMPDIR"] = nil
|
|
system "#{bin}/mysql_install_db", "--verbose", "--user=#{ENV["USER"]}",
|
|
"--basedir=#{prefix}", "--datadir=#{datadir}", "--tmpdir=/tmp"
|
|
end
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
A "/etc/my.cnf" from another install may interfere with a Homebrew-built
|
|
server starting up correctly.
|
|
|
|
To connect:
|
|
mysql -uroot
|
|
EOS
|
|
end
|
|
|
|
plist_options :manual => "mysql.server start"
|
|
|
|
def plist; <<-EOS.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>
|
|
<string>#{plist_name}</string>
|
|
<key>Program</key>
|
|
<string>#{opt_bin}/mysqld_safe</string>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>WorkingDirectory</key>
|
|
<string>#{var}</string>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "/bin/sh", "-n", "#{bin}/mysqld_safe"
|
|
(prefix/"mysql-test").cd do
|
|
system "./mysql-test-run.pl", "status", "--vardir=#{testpath}"
|
|
end
|
|
end
|
|
end
|