homebrew-core/Formula/zbackup.rb
Dominyk Tiller a2bafa27f8 openssl: disable SSLv2 support.
Kills ssl2 from OpenSSL. This PR relates to Homebrew/homebrew#31745. Force recompiles
everything that relies on OpenSSL from the master branch to enforce the
new OpenSSL no-ssl2 rule.
2014-08-24 17:13:48 +01:00

23 lines
590 B
Ruby

require 'formula'
class Zbackup < Formula
homepage 'http://zbackup.org'
url 'https://github.com/zbackup/zbackup/archive/1.2.tar.gz'
sha1 'e87dfaeeeea0d59f4af00d3ce248aaabf1a25cb9'
revision 1
depends_on 'cmake' => :build
depends_on 'openssl'
depends_on 'protobuf'
depends_on 'xz' # get liblzma compression algorithm library from XZutils
def install
system "cmake", ".", *std_cmake_args
system "make", "install"
end
test do
system "#{bin}/zbackup", '--non-encrypted', 'init', '.'
system "echo test | #{bin}/zbackup backup backups/test.bak"
end
end