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'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '0c5f193ced810b0d7ce3ab06d808cbb5eef03a2c'
|
2012-02-18 15:59:51 +00:00
|
|
|
|
2013-05-13 04:28:44 +00:00
|
|
|
head 'http://hg.libsdl.org/SDL', :branch => 'SDL-1.2', :using => :hg
|
2009-09-21 22:51:18 +00:00
|
|
|
|
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.
|
2013-05-13 04:28:44 +00:00
|
|
|
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}]
|
2012-09-05 04:04:01 +00:00
|
|
|
args << "--disable-nasm" unless MacOS.version >= :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-12-25 03:38:07 +00:00
|
|
|
args << '--disable-assembly' if ENV.compiler == :llvm or (ENV.compiler == :clang and MacOS.clang_build_version < 421)
|
2012-09-02 08:10:01 +00:00
|
|
|
args << '--without-x'
|
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.
|
2012-12-25 03:30:45 +00:00
|
|
|
libexec.install Dir["src/main/macosx/*"] unless build.head?
|
2009-08-30 03:46:29 +00:00
|
|
|
end
|
2012-09-02 08:10:01 +00:00
|
|
|
|
|
|
|
def test
|
|
|
|
system "#{bin}/sdl-config", "--version"
|
|
|
|
end
|
2009-08-30 03:46:29 +00:00
|
|
|
end
|