percona-server 5.6.14-rel62.0
Closes Homebrew/homebrew#23576. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
parent
141fb0924d
commit
36fb6c63d1
1 changed files with 10 additions and 3 deletions
|
@ -2,9 +2,9 @@ require 'formula'
|
|||
|
||||
class PerconaServer < Formula
|
||||
homepage 'http://www.percona.com'
|
||||
url 'http://www.percona.com/redir/downloads/Percona-Server-5.6/Percona-Server-5.6.13-rc60.5/source/Percona-Server-5.6.13-rc60.5.tar.gz'
|
||||
version '5.6.13-rc60.5'
|
||||
sha1 'c8a11e5df24d74f3e362bd85ef6b30756ad3bcf6'
|
||||
url 'http://www.percona.com/redir/downloads/Percona-Server-5.6/LATEST/release-5.6.14-62.0/483/source/Percona-Server-5.6.14-rel62.0.tar.gz'
|
||||
version '5.6.14-rel62.0'
|
||||
sha1 '6d9ddd92338c70ec13bdeb9a23568a990a5766f9'
|
||||
|
||||
depends_on 'cmake' => :build
|
||||
depends_on 'readline'
|
||||
|
@ -34,6 +34,13 @@ class PerconaServer < Formula
|
|||
@destination ||= (var/'percona').directory? ? 'percona' : 'mysql'
|
||||
end
|
||||
|
||||
def patches
|
||||
# Fixes percona server 5.6 compilation on OS X 10.9, based on
|
||||
# https://github.com/mxcl/homebrew/commit/aad5d93f4fabbf69766deb83780d3a6eeab7061a
|
||||
# for mysql 5.6
|
||||
"https://gist.github.com/israelshirk/7cc640498cf264ebfce3/raw/846839c84647c4190ad683e4cbf0fabcd8931f97/gistfile1.txt"
|
||||
end
|
||||
|
||||
def install
|
||||
# Build without compiler or CPU specific optimization flags to facilitate
|
||||
# compilation of gems and other software that queries `mysql-config`.
|
||||
|
|
Loading…
Reference in a new issue