Skip to content
This repository has been archived by the owner on Jan 16, 2025. It is now read-only.

ledger: Find Homebrew Python when building --HEAD #27095

Closed
Closed
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
14 changes: 13 additions & 1 deletion Library/Formula/ledger.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,19 @@ def install
# Support homebrew not at /usr/local. Also support Xcode-only setups:
inreplace 'acprep', 'search_prefixes = [', "search_prefixes = ['#{HOMEBREW_PREFIX}','#{MacOS.sdk_path}/usr',"
args = [((build.include? 'debug') ? 'debug' : 'opt'), "make", "install", "-N", "-j#{ENV.make_jobs}", "--output=build"]
args << '--python' if build.with? 'python'

if build.with? 'python'
# Per #25118, CMake does a poor job of detecting a brewed Python.
# We need to tell CMake explicitly where our default python lives.
# Inspired by
# https://github.com/Homebrew/homebrew/blob/51d054c/Library/Formula/opencv.rb
args << '--python' << '--'

python_prefix = `python-config --prefix`.strip
args << "-DPYTHON_LIBRARY='#{python_prefix}/Python'"
args << "-DPYTHON_INCLUDE_DIR='#{python_prefix}/Headers'"
end

system "./acprep", "--prefix=#{prefix}", *args
(share+'ledger').install 'python/demo.py', 'test/input/sample.dat', Dir['contrib']
else
Expand Down