68 lines
2.6 KiB
Ruby
68 lines
2.6 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 18
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_monterey: "d4faa9441bfae6b9695be0ba6f449fc4628a26a87d109501e80bbff5558ab1e6"
|
|
sha256 cellar: :any, arm64_big_sur: "cedb77ca64655bb9ffe5cc97fee5cd7def3b433c6b9a83f06f05aa3894f0bc74"
|
|
sha256 cellar: :any, monterey: "bb4e6be2721936c0f26fe45528a40eedeeab1e70b75588cb38886308b4063620"
|
|
sha256 cellar: :any, big_sur: "a6112a600f2cf830f0e22412aea86bc64eb89d745644c2f4c7c1829bf9dfc35d"
|
|
sha256 cellar: :any, catalina: "a1ed4faae8a672799571687663350ae6095b532200456b5ac4a2cc88845d1682"
|
|
sha256 cellar: :any, mojave: "1f49f633a49527ccee4dc95b996f0e7e41b0c1266da874d50e3ea9c450695c0d"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "32bbbc5a45c4080a4ef11da4e318c13f60ca4f9884a3c145f9e4897c67e82d6a"
|
|
end
|
|
|
|
# No new commits since 2016, no sign a activity since 2020
|
|
disable! date: "2021-12-16", because: :unmaintained
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "lzo"
|
|
depends_on "openssl@1.1"
|
|
depends_on "protobuf"
|
|
depends_on "xz" # get liblzma compression algorithm library from XZutils
|
|
|
|
uses_from_macos "zlib"
|
|
|
|
# These fixes are upstream and can be removed in version 1.5+
|
|
patch do
|
|
url "https://github.com/zbackup/zbackup/commit/7e6adda6b1df9c7b955fc06be28fe6ed7d8125a2.patch?full_index=1"
|
|
sha256 "a41acc7be1dee8c8f14e0fb73b6c4a39ae2d458ef8879553202f4ff917629f95"
|
|
end
|
|
|
|
patch do
|
|
url "https://github.com/zbackup/zbackup/commit/f4ff7bd8ec63b924a49acbf3a4f9cf194148ce18.patch?full_index=1"
|
|
sha256 "ae296da66ed2899ca9b06da61b2ed2d2407051e322bd961c72cf35fd9d6a330e"
|
|
end
|
|
|
|
def install
|
|
ENV.cxx11
|
|
|
|
# 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
|