kitchen-sync 1.7
Closes #34680. Signed-off-by: Igor Kapkov <igasgeek@me.com>
This commit is contained in:
parent
f81896bf93
commit
f6a72beb28
1 changed files with 7 additions and 7 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue