Added replicaton listener library from https://github.com/SponsorPay/mysql-replication-listener and first prototype implementation for table replication consistency module
This commit is contained in:
16
replication_listener/homebrew/mysql-replication-listener.rb
Normal file
16
replication_listener/homebrew/mysql-replication-listener.rb
Normal file
@ -0,0 +1,16 @@
|
||||
require 'formula'
|
||||
|
||||
class MysqlReplicationListener < Formula
|
||||
url 'https://bitbucket.org/winebarrel/mysql-replication-listener.git', :tag => '0.0.47-10'
|
||||
homepage 'https://bitbucket.org/winebarrel/mysql-replication-listener'
|
||||
|
||||
depends_on 'cmake'
|
||||
depends_on 'boost'
|
||||
#depends_on 'openssl'
|
||||
|
||||
def install
|
||||
system 'cmake', '.'
|
||||
system 'make'
|
||||
system 'make install'
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user