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

ghostscript: set correct library install names #191466

Merged
merged 1 commit into from
Sep 22, 2024
Merged
Changes from all commits
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
2 changes: 2 additions & 0 deletions Formula/g/ghostscript.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
class Ghostscript < Formula

Check notice on line 1 in Formula/g/ghostscript.rb

View workflow job for this annotation

GitHub Actions / macOS 15-arm64

Bottle cache hit

Bottle for ghostscript built at 3f6ef43cb0e (Merge 30cff59c77da1fe39fbeb2cd6a91e7c783347c30 into f70f6012389d2bac64aba73135b9f795ce66fbf1, 2024-09-22)

Check notice on line 1 in Formula/g/ghostscript.rb

View workflow job for this annotation

GitHub Actions / macOS 14-arm64

Bottle cache hit

Bottle for ghostscript built at 3f6ef43cb0e (Merge 30cff59c77da1fe39fbeb2cd6a91e7c783347c30 into f70f6012389d2bac64aba73135b9f795ce66fbf1, 2024-09-22)

Check notice on line 1 in Formula/g/ghostscript.rb

View workflow job for this annotation

GitHub Actions / macOS 13-arm64

Bottle cache hit

Bottle for ghostscript built at 3f6ef43cb0e (Merge 30cff59c77da1fe39fbeb2cd6a91e7c783347c30 into f70f6012389d2bac64aba73135b9f795ce66fbf1, 2024-09-22)

Check notice on line 1 in Formula/g/ghostscript.rb

View workflow job for this annotation

GitHub Actions / macOS 13-x86_64

Bottle cache hit

Bottle for ghostscript built at 3f6ef43cb0e (Merge 30cff59c77da1fe39fbeb2cd6a91e7c783347c30 into f70f6012389d2bac64aba73135b9f795ce66fbf1, 2024-09-22)

Check notice on line 1 in Formula/g/ghostscript.rb

View workflow job for this annotation

GitHub Actions / macOS 14-x86_64

Bottle cache hit

Bottle for ghostscript built at 3f6ef43cb0e (Merge 30cff59c77da1fe39fbeb2cd6a91e7c783347c30 into f70f6012389d2bac64aba73135b9f795ce66fbf1, 2024-09-22)
desc "Interpreter for PostScript and PDF"
homepage "https://www.ghostscript.com/"
url "https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs10040/ghostpdl-10.04.0.tar.xz"
Expand Down Expand Up @@ -71,6 +71,8 @@
--with-system-libtiff
--without-x]

# Set the correct library install names so that `brew` doesn't need to fix them up later.
ENV["DARWIN_LDFLAGS_SO_PREFIX"] = "#{opt_lib}/"
system configure, *std_configure_args, *args

# Install binaries and libraries
Expand Down
Loading