57 lines
2.2 KiB
Ruby
57 lines
2.2 KiB
Ruby
class Bsdiff < Formula
|
|
desc "Generate and apply patches to binary files"
|
|
homepage "https://www.daemonology.net/bsdiff/"
|
|
# Returns 403 (forbidden) for the canonical download URL:
|
|
# "https://www.daemonology.net/bsdiff/bsdiff-4.3.tar.gz"
|
|
url "https://deb.debian.org/debian/pool/main/b/bsdiff/bsdiff_4.3.orig.tar.gz"
|
|
sha256 "18821588b2dc5bf159aa37d3bcb7b885d85ffd1e19f23a0c57a58723fea85f48"
|
|
|
|
livecheck do
|
|
url :homepage
|
|
regex(/href=.*?bsdiff[._-]v?(\d+(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "810dccf063f4876a5786e4aa7f7584ebcf5205fec1abd0882cead7e0de16bca9"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "7f1f498a32a8804a238cf8dce1ba7cebbee070ae6bf0bb4015dcb133ab155574"
|
|
sha256 cellar: :any_skip_relocation, catalina: "648a52a8af8e8f17feb9e34168dd0f00abfc98e9f0f3aa7fd88fb1458a782098"
|
|
sha256 cellar: :any_skip_relocation, mojave: "bca20f48516a5fe4afed7ed045a787e6976ff665b483ffe5719a652555f3be22"
|
|
sha256 cellar: :any_skip_relocation, high_sierra: "3624be48c026da2a0ade8316548296ec4b2b100a0b9914acb77124374c9be0d2"
|
|
sha256 cellar: :any_skip_relocation, sierra: "c21cd31202c096b99788346b22a3aeaddd72b397b2ae6cbd971926ba93d9f541"
|
|
sha256 cellar: :any_skip_relocation, el_capitan: "4b4e2e68dc5ffa9a5fc02b6c59c4d8201d8d6df8d5e6aef5bd70854ecbe917b7"
|
|
sha256 cellar: :any_skip_relocation, yosemite: "79d0ef36a33a214595c66a70d8197a1eb148bcd3c1d1c782d28fc20f6a057d43"
|
|
sha256 cellar: :any_skip_relocation, mavericks: "26899c5d4e34ccfde4633b78a8cbbdf3036f028dfb16767fb2ac64efb2296b56"
|
|
end
|
|
|
|
depends_on "bsdmake" => :build
|
|
|
|
patch :DATA
|
|
|
|
def install
|
|
system "bsdmake"
|
|
bin.install "bsdiff"
|
|
man1.install "bsdiff.1"
|
|
end
|
|
|
|
test do
|
|
(testpath/"bin1").write "\x01\x02\x03\x04"
|
|
(testpath/"bin2").write "\x01\x02\x03\x05"
|
|
|
|
system "#{bin}/bsdiff", "bin1", "bin2", "bindiff"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/bspatch.c b/bspatch.c
|
|
index 643c60b..543379c 100644
|
|
--- a/bspatch.c
|
|
+++ b/bspatch.c
|
|
@@ -28,6 +28,7 @@
|
|
__FBSDID("$FreeBSD: src/usr.bin/bsdiff/bspatch/bspatch.c,v 1.1 2005/08/06 01:59:06 cperciva Exp $");
|
|
#endif
|
|
|
|
+#include <sys/types.h>
|
|
#include <bzlib.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|