PageRenderTime 41ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/homebrew/mysql-replication-listener.rb

https://bitbucket.org/winebarrel/mysql-replication-listener
Ruby | 16 lines | 12 code | 3 blank | 1 comment | 0 complexity | 2d80efcfe7225ddc8d75bcde644f52ec MD5 | raw file
Possible License(s): GPL-2.0
  1. require 'formula'
  2. class MysqlReplicationListener < Formula
  3. url 'https://bitbucket.org/winebarrel/mysql-replication-listener.git', :tag => '0.0.47-11'
  4. homepage 'https://bitbucket.org/winebarrel/mysql-replication-listener'
  5. depends_on 'cmake'
  6. depends_on 'boost'
  7. #depends_on 'openssl'
  8. def install
  9. system 'cmake', '.'
  10. system 'make'
  11. system 'make install'
  12. end
  13. end