formula: add rpath helper method

About 40 formulae set `CMAKE_INSTALL_RPATH` to `lib` or `opt_lib`, but
this breaks bottle relocatability.

The correct solution is to use `@loader_path/../lib`, but this is macOS
specific, so it requires some OS-specific logic. Rather than replicating
this logic over many formulae, we may as well define a helper method for
it.

See https://github.com/Homebrew/homebrew-core/issues/75458.
This commit is contained in:
Carlo Cabrera 2021-04-19 09:23:33 +01:00
parent 520b8110e8
commit 309504a32c
No known key found for this signature in database
GPG Key ID: C74D447FC549A1D0
2 changed files with 11 additions and 0 deletions

View File

@ -3,6 +3,7 @@
class Formula
undef shared_library
undef rpath
def shared_library(name, version = nil)
suffix = if version == "*" || (name == "*" && version.blank?)
@ -13,6 +14,10 @@ class Formula
"#{name}.so#{suffix}"
end
def rpath
"'$ORIGIN/../lib'"
end
class << self
undef ignore_missing_libraries

View File

@ -1523,6 +1523,12 @@ class Formula
"#{name}#{infix}.dylib"
end
# Executable/Library RPATH according to platform conventions.
sig { returns(String) }
def rpath
"@loader_path/../lib"
end
# an array of all core {Formula} names
# @private
def self.core_names