95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
30 lines
727 B
Ruby
30 lines
727 B
Ruby
class Bsdiff < Formula
|
|
desc "Generate and apply patches to binary files"
|
|
homepage "http://www.daemonology.net/bsdiff"
|
|
url "http://www.daemonology.net/bsdiff/bsdiff-4.3.tar.gz"
|
|
sha256 "18821588b2dc5bf159aa37d3bcb7b885d85ffd1e19f23a0c57a58723fea85f48"
|
|
|
|
depends_on "bsdmake" => :build
|
|
|
|
patch :DATA
|
|
|
|
def install
|
|
system "bsdmake"
|
|
bin.install "bsdiff"
|
|
man1.install "bsdiff.1"
|
|
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>
|