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:
Jan Lindström
2013-06-21 09:11:57 +03:00
parent 0fed3d624e
commit bc3a104e3f
176 changed files with 23519 additions and 0 deletions

View 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