50 lines
1.8 KiB
Ruby
50 lines
1.8 KiB
Ruby
class Mupdf < Formula
|
|
desc "Lightweight PDF and XPS viewer"
|
|
homepage "https://mupdf.com/"
|
|
url "https://mupdf.com/downloads/archive/mupdf-1.18.0-source.tar.xz"
|
|
sha256 "592d4f6c0fba41bb954eb1a41616661b62b134d5b383e33bd45a081af5d4a59a"
|
|
license "AGPL-3.0-or-later"
|
|
revision 1
|
|
head "https://git.ghostscript.com/mupdf.git"
|
|
|
|
livecheck do
|
|
url "https://mupdf.com/downloads/archive/"
|
|
regex(/href=.*?mupdf[._-]v?(\d+(?:\.\d+)+)-source\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_big_sur: "c28c062952a8a22084a7f59f3eb3378a8286d924263b0da073f6152870a21bf9"
|
|
sha256 cellar: :any, big_sur: "aaa1bc3c7a6e77bca62d9b4f6d1b7225cea461d8d28471df79b9ee11e81d9ecc"
|
|
sha256 cellar: :any, catalina: "b656ec4a7c2cbb3b55b52678e5129bbeb27215c793cd6e3876d40a51d293bd84"
|
|
sha256 cellar: :any, mojave: "5b06c1203b68608f64d082b83db659a46d98a849d79530bfa83f28adb970e17e"
|
|
sha256 cellar: :any, high_sierra: "32dc7277f5dce0762c695ecf15f3ec745ec7767afec09f6acefc4aea86386873"
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "freeglut"
|
|
depends_on "mesa"
|
|
|
|
conflicts_with "mupdf-tools",
|
|
because: "mupdf and mupdf-tools install the same binaries"
|
|
|
|
def install
|
|
glut_cflags = `pkg-config --cflags glut gl`.chomp
|
|
glut_libs = `pkg-config --libs glut gl`.chomp
|
|
system "make", "install",
|
|
"build=release",
|
|
"verbose=yes",
|
|
"CC=#{ENV.cc}",
|
|
"SYS_GLUT_CFLAGS=#{glut_cflags}",
|
|
"SYS_GLUT_LIBS=#{glut_libs}",
|
|
"prefix=#{prefix}"
|
|
|
|
# Symlink `mutool` as `mudraw` (a popular shortcut for `mutool draw`).
|
|
bin.install_symlink bin/"mutool" => "mudraw"
|
|
man1.install_symlink man1/"mutool.1" => "mudraw.1"
|
|
end
|
|
|
|
test do
|
|
assert_match "Homebrew test", shell_output("#{bin}/mudraw -F txt #{test_fixtures("test.pdf")}")
|
|
end
|
|
end
|