blob: a5e85ffed7bd0271dadc6bc1657e684e04839210 (
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
33
34
35
36
37
38
39
40
41
42
43
 | require 'formula'
class Irrlicht < Formula
  homepage 'http://irrlicht.sourceforge.net/'
  head 'https://irrlicht.svn.sourceforge.net/svnroot/irrlicht/trunk'
  url 'https://downloads.sourceforge.net/irrlicht/irrlicht-1.8.1.zip'
  sha1 '231cd2cf2eefe43bde7c40537ece055a3d6e09cb'
  # may be removed when https://sourceforge.net/p/irrlicht/patches/297/ applied
  head do
    patch do
      url 'https://gist.githubusercontent.com/neoascetic/7487c936a3c5858ad762/raw/4f572fdca4cd7a3ae4bb3893d50821cee48e3236/trunk.diff'
      sha1 '8c891aabaec1c462ae06415002a2eb92d66bbc2f'
    end
  end
  stable do
    patch do
      url 'https://gist.githubusercontent.com/neoascetic/7487c936a3c5858ad762/raw/2e3ab944c43357d705e270a99a5cd7d1b7e033c1/1.8.1.diff'
      sha1 '338a7e931d06ed2e25427d05273b80334f8c215a'
    end
  end
  bottle do
    cellar :any
    revision 1
    sha1 "10609d1af910d5c1efb9de13b52b25fdabd077b8" => :yosemite
    sha1 "631246df8cf27ce69f951710737fd0b10b56ca0b" => :mavericks
    sha1 "0684b7c6e105988e15609ed52331608e5d1d40b8" => :mountain_lion
  end
  depends_on :xcode => :build
  def install
    xcodebuild "-project", "source/Irrlicht/MacOSX/MacOSX.xcodeproj",
               "-configuration", "Release",
               "-target", "libIrrlicht.a",
               "SYMROOT=build",
               "-sdk", "macosx#{MacOS.version}"
    lib.install "source/Irrlicht/MacOSX/build/Release/libIrrlicht.a"
    include.install "include" => "irrlicht"
  end
end
 |