kitchen-sync 1.7

Closes #34680.

Signed-off-by: Igor Kapkov <igasgeek@me.com>
This commit is contained in:
Igor Kapkov 2018-12-01 23:14:45 +11:00
parent f81896bf93
commit f6a72beb28
No known key found for this signature in database
GPG key ID: D7EEA6CEB7ECBDC7

View file

@ -1,8 +1,8 @@
class KitchenSync < Formula
desc "Fast efficiently sync database without dumping & reloading"
homepage "https://github.com/willbryant/kitchen_sync"
url "https://github.com/willbryant/kitchen_sync/archive/1.5.tar.gz"
sha256 "73843b3fde113ac29fdfdaf316fadb7e10abd3d01e953abcb7af497126dd357c"
url "https://github.com/willbryant/kitchen_sync/archive/1.7.tar.gz"
sha256 "c8f393056290de5488d46b975a574638bb33c2d1f697d4902f0d46f662112f86"
head "https://github.com/willbryant/kitchen_sync.git"
bottle do
@ -12,20 +12,20 @@ class KitchenSync < Formula
sha256 "d74bd7054a4a9fa23610d383936aeb122986ec47af70f269e502b5215d91791f" => :sierra
end
deprecated_option "without-mysql" => "without-mysql-client"
depends_on "cmake" => :build
depends_on "pkg-config" => :build
depends_on "boost"
depends_on "mysql-client"
depends_on "yaml-cpp"
depends_on "mysql-client" => :recommended
depends_on "postgresql" => :optional
needs :cxx11
def install
ENV.cxx11
system "cmake", ".", *std_cmake_args
system "cmake", ".",
"-DMySQL_INCLUDE_DIR=#{Formula["mysql-client"].opt_include}/mysql",
*std_cmake_args
system "make", "install"
end