59 lines
2.5 KiB
Ruby
59 lines
2.5 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_ventura: "e83875207f8cc492079e701ba371bb08c89aaea95d47c0aa1d78069376dced12"
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "141219925cf9d52e796d9bce068bf747d32e5f5c9b486c3eaf539b59980062dd"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "810dccf063f4876a5786e4aa7f7584ebcf5205fec1abd0882cead7e0de16bca9"
|
|
sha256 cellar: :any_skip_relocation, ventura: "a48083deaf3e24c5c364aeb4503cbceee406a980b63fa764df92d23798c95283"
|
|
sha256 cellar: :any_skip_relocation, monterey: "e0cf74e5fb1ef71fd68a33595f0dcc6d777d72e90689f57976e5c1784b1496a0"
|
|
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"
|
|
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>
|