parent
e45dfa9bb9
commit
a13d43f4f1
1 changed files with 9 additions and 0 deletions
|
@ -7,6 +7,15 @@ class Chuck < Formula
|
|||
|
||||
def install
|
||||
cd "src" do
|
||||
# On 10.9, chuck fails to set flags to link against the
|
||||
# private framework it needs
|
||||
# See: https://github.com/Homebrew/homebrew/issues/26519
|
||||
inreplace 'makefile.osx' do |s|
|
||||
s.change_make_var! 'LINK_EXTRAS',
|
||||
'-F/System/Library/PrivateFrameworks -weak_framework MultitouchSupport'
|
||||
s.remove_make_var! 'ISYSROOT'
|
||||
end
|
||||
|
||||
system "make osx"
|
||||
bin.install "chuck"
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue