stone-soup: Fix compilation on Snow Leopard
See: https://github.com/mxcl/homebrew/issues/4296
This commit is contained in:
parent
dbd86d42e5
commit
80fc087aba
1 changed files with 20 additions and 0 deletions
|
@ -5,8 +5,28 @@ class StoneSoup < Formula
|
|||
homepage 'http://crawl.develz.org/wordpress/'
|
||||
md5 'ffb54c88d280f036a3819cba23bc4489'
|
||||
|
||||
# Keep empty folders for save games and such
|
||||
skip_clean :all
|
||||
|
||||
def install
|
||||
Dir.chdir "source"
|
||||
|
||||
# Hacks here by Adam V (@flangy) aided by @mistydemeo
|
||||
# Arch / SDK detection is somewhat bogus: 32 vs 64-bit is detected wrong
|
||||
# and the 10.4 SDK is selected too aggressively.
|
||||
# Fix up what it detects
|
||||
target_arch = MacOS.prefer_64_bit? ? "x86_64" : "i386"
|
||||
|
||||
inreplace "makefile" do |s|
|
||||
s.gsub!(
|
||||
"CC = $(GCC) -arch $(ARCH) -isysroot $(SDKROOT) -mmacosx-version-min=$(SDK_VER)",
|
||||
"CC = #{ENV.cc} -arch #{target_arch} -isysroot #{MacOS.xcode_prefix}/SDKs/MacOSX#{MACOS_VERSION}.sdk -mmacosx-version-min=#{MACOS_VERSION}"
|
||||
)
|
||||
s.gsub!(
|
||||
"CXX = $(GXX) -arch $(ARCH) -isysroot $(SDKROOT) -mmacosx-version-min=$(SDK_VER)",
|
||||
"CXX = #{ENV.cxx} -arch #{target_arch} -isysroot #{MacOS.xcode_prefix}/SDKs/MacOSX#{MACOS_VERSION}.sdk -mmacosx-version-min=#{MACOS_VERSION}"
|
||||
)
|
||||
end
|
||||
system "make", "prefix=#{prefix}", "SAVEDIR=saves/", "DATADIR=data/", "install"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue