2012-11-11 20:00:24 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Irrlicht < Formula
|
|
|
|
homepage 'http://irrlicht.sourceforge.net/'
|
|
|
|
head 'https://irrlicht.svn.sourceforge.net/svnroot/irrlicht/trunk'
|
2013-11-23 02:36:45 +00:00
|
|
|
url 'http://downloads.sourceforge.net/irrlicht/irrlicht-1.8.1.zip'
|
2014-01-30 04:12:50 +00:00
|
|
|
sha1 '231cd2cf2eefe43bde7c40537ece055a3d6e09cb'
|
2012-11-11 20:00:24 +00:00
|
|
|
|
|
|
|
depends_on :xcode
|
|
|
|
|
|
|
|
def install
|
2013-11-23 02:36:45 +00:00
|
|
|
system *%W(xcodebuild -project source/Irrlicht/MacOSX/MacOSX.xcodeproj -configuration Release -target libIrrlicht.a)
|
2012-11-11 20:00:24 +00:00
|
|
|
lib.install "source/Irrlicht/MacOSX/build/Release/libIrrlicht.a"
|
|
|
|
include.install "include" => "irrlicht"
|
|
|
|
end
|
|
|
|
end
|