51 lines
2 KiB
Ruby
51 lines
2 KiB
Ruby
class Mupdf < Formula
|
|
desc "Lightweight PDF and XPS viewer"
|
|
homepage "https://mupdf.com/"
|
|
revision 1
|
|
head "https://git.ghostscript.com/mupdf.git"
|
|
|
|
stable do
|
|
url "https://mupdf.com/downloads/mupdf-1.11-source.tar.gz"
|
|
sha256 "209474a80c56a035ce3f4958a63373a96fad75c927c7b1acdc553fc85855f00a"
|
|
|
|
# Upstream already. Remove on next stable release.
|
|
patch do
|
|
url "https://mirrors.ocf.berkeley.edu/debian/pool/main/m/mupdf/mupdf_1.11+ds1-1.1.debian.tar.xz"
|
|
mirror "https://mirrorservice.org/sites/ftp.debian.org/debian/pool/main/m/mupdf/mupdf_1.11+ds1-1.1.debian.tar.xz"
|
|
sha256 "cb274532e34f818b2f1871fee6303cfffda37251937dd7d731a898b2ca736433"
|
|
apply "patches/0003-Fix-698539-Don-t-use-xps-font-if-it-could-not-be-loa.patch",
|
|
"patches/0004-Fix-698540-Check-name-comment-and-meta-size-field-si.patch",
|
|
"patches/0005-Fix-698558-Handle-non-tags-in-tag-name-comparisons.patch"
|
|
end
|
|
end
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "f1ed1cfc2a01b0137f1d91c116acadba78051908572e476590e8ba19df045f18" => :high_sierra
|
|
sha256 "3ac9b816de24b8eb26593811248333b22cae4804cfdaad4b6f1e71808e0aadb8" => :sierra
|
|
sha256 "6641ed8ff85c427a03008439645e36675d3dad30c187ada3278d2c384b9daac0" => :el_capitan
|
|
end
|
|
|
|
depends_on :x11
|
|
depends_on "openssl"
|
|
|
|
conflicts_with "mupdf-tools",
|
|
:because => "mupdf and mupdf-tools install the same binaries."
|
|
|
|
def install
|
|
# Work around bug: https://bugs.ghostscript.com/show_bug.cgi?id=697842
|
|
inreplace "Makerules", "RANLIB_CMD := xcrun", "RANLIB_CMD = xcrun"
|
|
|
|
system "make", "install",
|
|
"build=release",
|
|
"verbose=yes",
|
|
"CC=#{ENV.cc}",
|
|
"prefix=#{prefix}",
|
|
"HAVE_GLFW=no" # Do not build OpenGL viewer: https://bugs.ghostscript.com/show_bug.cgi?id=697842
|
|
bin.install_symlink "mutool" => "mudraw"
|
|
end
|
|
|
|
test do
|
|
assert_match "Homebrew test", shell_output("#{bin}/mudraw -F txt #{test_fixtures("test.pdf")}")
|
|
end
|
|
end
|