Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

utftex 1.18 #131899

Merged
merged 2 commits into from
May 24, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions Formula/utftex.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Utftex < Formula
desc "Pretty print math in monospace fonts, using a TeX-like syntax"
homepage "https://github.com/bartp5/libtexprintf"
url "https://github.com/bartp5/libtexprintf/archive/refs/tags/v1.17.tar.gz"
sha256 "2fb425b90182bf5cbfcdd7daff88e50df53eb00262a77033dc2ac0b9168b2b4c"
url "https://github.com/bartp5/libtexprintf/archive/refs/tags/v1.18.tar.gz"
sha256 "ff39c33629ae9bc6f8782b9fdfa14a240a75ee3a3bf80d02f95bf31c522f9e31"
license "GPL-3.0-only"

bottle do
Expand All @@ -19,6 +19,13 @@ class Utftex < Formula
depends_on "automake" => :build
depends_on "libtool" => :build

# Fixes race condition in Makefile
# Remove in next release
patch do
url "https://github.com/bartp5/libtexprintf/commit/65fb91ab307f3185278fca354f21f4c282cc7154.patch?full_index=1"
sha256 "23d67a77fc27ecfb7c9c600db2eeb58eb78fe0ef1d23e00415e9cc08fdd1620a"
end

def install
system "./autogen.sh"
system "./configure", *std_configure_args, "--disable-silent-rules"
Expand Down