aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/stone-soup.rb
blob: 6de9a53f5bcb4f11665d0465841aa74c177b3cbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
require 'formula'

class StoneSoup < Formula
  url 'http://sourceforge.net/projects/crawl-ref/files/Stone%20Soup/0.7.2/stone_soup-0.7.2.tar.bz2'
  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