stone-soup: Fix compilation on Snow Leopard

See: https://github.com/mxcl/homebrew/issues/4296
This commit is contained in:
Adam Vandenberg 2011-06-19 20:31:35 -07:00
parent dbd86d42e5
commit 80fc087aba

View file

@ -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