96 lines
2.7 KiB
Ruby
96 lines
2.7 KiB
Ruby
class Zbar < Formula
|
|
desc "Suite of barcodes-reading tools"
|
|
homepage "https://zbar.sourceforge.io"
|
|
revision 9
|
|
|
|
stable do
|
|
url "https://downloads.sourceforge.net/project/zbar/zbar/0.10/zbar-0.10.tar.bz2"
|
|
sha256 "234efb39dbbe5cef4189cc76f37afbe3cfcfb45ae52493bfe8e191318bdbadc6"
|
|
|
|
# Fix JPEG handling using patch from
|
|
# https://sourceforge.net/p/zbar/discussion/664596/thread/58b8d79b#8f67
|
|
# already applied upstream but not present in the 0.10 release
|
|
patch :DATA
|
|
end
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "e6a6a23bc18fb83aaff6899da45c31cd3e5959eba8cfae4e0bd7a6ba7eba5cb0" => :mojave
|
|
sha256 "43b41e062704914a007017d7d35dfb518f6c04141a52eb2c146a5e908a75334c" => :high_sierra
|
|
sha256 "64d9816afc8e6fd898c402f152a9847b4e265da078cf27fa6b1fb289ec3d963c" => :sierra
|
|
sha256 "8a6c2c77063e98986a8b6d6a5eb19333cd39efccb03af08493d6b5e8a60d57b7" => :el_capitan
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/ZBar/ZBar.git"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "gettext" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "xmlto" => :build
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "freetype"
|
|
depends_on "imagemagick"
|
|
depends_on "jpeg"
|
|
depends_on "libtool"
|
|
depends_on "ufraw"
|
|
depends_on "xz"
|
|
|
|
def install
|
|
if build.head?
|
|
inreplace "configure.ac", "-Werror", ""
|
|
gettext = Formula["gettext"]
|
|
system "autoreconf", "-fvi", "-I", "#{gettext.opt_share}/aclocal"
|
|
end
|
|
|
|
# ImageMagick 7 compatibility
|
|
# Reported 20 Jun 2016 https://sourceforge.net/p/zbar/support-requests/156/
|
|
inreplace ["configure", "zbarimg/zbarimg.c"],
|
|
"wand/MagickWand.h",
|
|
"ImageMagick-7/MagickWand/MagickWand.h"
|
|
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
--without-python
|
|
--without-qt
|
|
--disable-video
|
|
--without-gtk
|
|
--without-x
|
|
]
|
|
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system bin/"zbarimg", "-h"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/zbar/jpeg.c b/zbar/jpeg.c
|
|
index fb566f4..d1c1fb2 100644
|
|
--- a/zbar/jpeg.c
|
|
+++ b/zbar/jpeg.c
|
|
@@ -79,8 +79,15 @@ int fill_input_buffer (j_decompress_ptr cinfo)
|
|
void skip_input_data (j_decompress_ptr cinfo,
|
|
long num_bytes)
|
|
{
|
|
- cinfo->src->next_input_byte = NULL;
|
|
- cinfo->src->bytes_in_buffer = 0;
|
|
+ if (num_bytes > 0) {
|
|
+ if (num_bytes < cinfo->src->bytes_in_buffer) {
|
|
+ cinfo->src->next_input_byte += num_bytes;
|
|
+ cinfo->src->bytes_in_buffer -= num_bytes;
|
|
+ }
|
|
+ else {
|
|
+ fill_input_buffer(cinfo);
|
|
+ }
|
|
+ }
|
|
}
|
|
|
|
void term_source (j_decompress_ptr cinfo)
|