57 lines
1.9 KiB
Ruby
57 lines
1.9 KiB
Ruby
class Zbackup < Formula
|
|
desc "Globally-deduplicating backup tool (based on ideas in rsync)"
|
|
homepage "http://zbackup.org"
|
|
url "https://github.com/zbackup/zbackup/archive/1.4.4.tar.gz"
|
|
sha256 "efccccd2a045da91576c591968374379da1dc4ca2e3dec4d3f8f12628fa29a85"
|
|
revision 1
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "d0b21e2a3bf31a06c8f1b6d12cf5ca4115b3a6d99dab158f80bbdc496193c505" => :el_capitan
|
|
sha256 "f1cb937bd614afc37cbd734b9fe66119fb3a3f86e6977070c5ad3bcf3d0ee5f8" => :yosemite
|
|
sha256 "4b181b209da2bc98505e9a8e6c2762327f36ba9f88b4e215a5c5fe13d89260dc" => :mavericks
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "openssl"
|
|
depends_on "protobuf"
|
|
depends_on "xz" # get liblzma compression algorithm library from XZutils
|
|
depends_on "lzo"
|
|
|
|
# These fixes are upstream and can be removed in version 1.5+
|
|
patch do
|
|
url "https://github.com/zbackup/zbackup/commit/7e6adda6b1df9c7b955fc06be28fe6ed7d8125a2.diff"
|
|
sha256 "564c494b02be7b159b21f1cfcc963df29350061e050e66b7b3d96ed829552351"
|
|
end
|
|
|
|
patch do
|
|
url "https://github.com/zbackup/zbackup/commit/f4ff7bd8ec63b924a49acbf3a4f9cf194148ce18.diff"
|
|
sha256 "47f760aa03a0a1550f05e30b1fa127afa1eda5a802d0d6edd9be07f3762008fb"
|
|
end
|
|
|
|
def install
|
|
# Avoid collision with protobuf 3.x CHECK macro
|
|
inreplace [
|
|
"backup_creator.cc",
|
|
"check.hh",
|
|
"chunk_id.cc",
|
|
"chunk_storage.cc",
|
|
"compression.cc",
|
|
"encrypted_file.cc",
|
|
"encryption.cc",
|
|
"encryption_key.cc",
|
|
"mt.cc",
|
|
"tests/bundle/test_bundle.cc",
|
|
"tests/encrypted_file/test_encrypted_file.cc",
|
|
"unbuffered_file.cc",
|
|
],
|
|
/\bCHECK\b/, "ZBCHECK"
|
|
system "cmake", ".", *std_cmake_args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/zbackup", "--non-encrypted", "init", "."
|
|
system "echo test | #{bin}/zbackup --non-encrypted backup backups/test.bak"
|
|
end
|
|
end
|