class PerconaServer < 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.25-73.1/source/tarball/percona-server-5.6.25-73.1.tar.gz" version "5.6.25-73.1" sha256 "5a0d88465e4bb081e621b06bc943fafadb4c67a2cca50839b44fcd94ae793b50" bottle do sha256 "f1ecbe431098b4618e448634dba41a75f8ed0fada773344b469e9c9e3db653df" => :yosemite sha256 "5f2e8564ea19bdca58b522fb0ca2c24835fd27a3d1b0c5aaf64641f69c62c474" => :mavericks sha256 "8bb2a50aedda323875f2955bd7cafe75e5e63b24596dfb8b090e88814b85befa" => :mountain_lion end option :universal option "with-tests", "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" deprecated_option "enable-local-infile" => "with-local-infile" depends_on "cmake" => :build depends_on "pidof" unless MacOS.version >= :mountain_lion depends_on "openssl" conflicts_with "mysql-connector-c", :because => "both install `mysql_config`" conflicts_with "mariadb", "mysql", "mysql-cluster", :because => "percona, mariadb, and mysql install the same binaries." conflicts_with "mysql-connector-c", :because => "both install MySQL client libraries" fails_with :llvm do build 2334 cause "https://github.com/Homebrew/homebrew/issues/issue/144" end # Where the database files should be located. Existing installs have them # under var/percona, but going forward they will be under var/msyql 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}" # Build without compiler or CPU specific optimization flags to facilitate # compilation of gems and other software that queries `mysql-config`. ENV.minimal_optimization 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 ] # To enable unit testing at build, we need to download the unit testing suite if build.with? "tests" 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", *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" # 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 KeepAlive Label #{plist_name} Program #{opt_bin}/mysqld_safe RunAtLoad WorkingDirectory #{var} EOS end end