2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-08-30 03:46:29 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Sdl < Formula
|
2009-10-21 03:11:35 +00:00
|
|
|
homepage 'http://www.libsdl.org/'
|
2012-02-18 15:59:51 +00:00
|
|
|
url 'http://www.libsdl.org/release/SDL-1.2.15.tar.gz'
|
|
|
|
md5 '9d96df8417572a2afb781a7c4c811a85'
|
|
|
|
|
|
|
|
head 'http://hg.libsdl.org/SDL', :using => :hg
|
2009-09-21 22:51:18 +00:00
|
|
|
|
2012-06-07 01:35:12 +00:00
|
|
|
depends_on :x11
|
|
|
|
|
2012-08-12 17:59:40 +00:00
|
|
|
if build.head?
|
2012-07-07 18:08:22 +00:00
|
|
|
depends_on :automake
|
|
|
|
depends_on :libtool
|
2012-02-28 15:39:22 +00:00
|
|
|
end
|
|
|
|
|
2012-08-12 17:59:40 +00:00
|
|
|
option :universal
|
2012-03-30 09:01:38 +00:00
|
|
|
|
2009-08-30 03:46:29 +00:00
|
|
|
def install
|
2012-04-15 20:31:05 +00:00
|
|
|
# we have to do this because most build scripts assume that all sdl modules
|
|
|
|
# are installed to the same prefix. Consequently SDL stuff cannot be
|
|
|
|
# keg-only but I doubt that will be needed.
|
|
|
|
inreplace %w[sdl.pc.in sdl-config.in], '@prefix@', HOMEBREW_PREFIX
|
2009-10-23 18:02:02 +00:00
|
|
|
|
2012-08-12 17:59:40 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
2012-03-30 09:01:38 +00:00
|
|
|
|
2012-08-12 17:59:40 +00:00
|
|
|
system "./autogen.sh" if build.head?
|
2011-11-23 05:30:01 +00:00
|
|
|
|
2012-08-10 12:44:43 +00:00
|
|
|
args = %W[--prefix=#{prefix}]
|
|
|
|
args << "--disable-nasm" unless MacOS.mountain_lion? # might work with earlier, might only work with new clang
|
2011-11-23 17:21:30 +00:00
|
|
|
# LLVM-based compilers choke on the assembly code packaged with SDL.
|
2012-08-10 12:44:43 +00:00
|
|
|
args << '--disable-assembly' if ENV.compiler == :llvm or ENV.compiler == :clang and MacOS.clang_build_version < 421
|
2011-11-23 05:30:01 +00:00
|
|
|
|
|
|
|
system './configure', *args
|
2009-08-30 03:46:29 +00:00
|
|
|
system "make install"
|
2009-10-23 18:02:02 +00:00
|
|
|
|
2009-09-25 22:32:17 +00:00
|
|
|
# Copy source files needed for Ojective-C support.
|
|
|
|
libexec.install Dir["src/main/macosx/*"]
|
2009-08-30 03:46:29 +00:00
|
|
|
end
|
|
|
|
end
|