class Sdl2 < Formula desc "Low-level access to audio, keyboard, mouse, joystick, and graphics" homepage "https://www.libsdl.org/" url "https://libsdl.org/release/SDL2-2.0.4.tar.gz" sha256 "da55e540bf6331824153805d58b590a29c39d2d506c6d02fa409aedeab21174b" bottle do cellar :any rebuild 1 sha256 "30d399af15a544799466d291b81ac7d121fbacd7f0586539622f43afd6726a19" => :sierra sha256 "748d150139dcb1d58deb2f7b7e2fa73f0c3a6cc59a48ef4bff37e97307b3e6b6" => :el_capitan sha256 "2bf3ca9593760c9fae6046ef7e650b6609c9b0c992ec817b593edd3ceb13f226" => :yosemite sha256 "98556d9ac1f5cf7c51deec86bc23eb773dde6454939e181ec769dcafb51b4282" => :mavericks end head do url "https://hg.libsdl.org/SDL", :using => :hg depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build end option :universal # https://github.com/mistydemeo/tigerbrew/issues/361 if MacOS.version <= :snow_leopard patch do url "https://gist.githubusercontent.com/miniupnp/26d6e967570e5729a757/raw/1a86f3cdfadbd9b74172716abd26114d9cb115d5/SDL2-2.0.3_OSX_104.patch" sha256 "4d01f05f02568e565978308e42e98b4da2b62b1451f71c29d24e11202498837e" end end def install # 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[sdl2.pc.in sdl2-config.in], "@prefix@", HOMEBREW_PREFIX ENV.universal_binary if build.universal? system "./autogen.sh" if build.head? || build.devel? args = %W[--prefix=#{prefix}] # LLVM-based compilers choke on the assembly code packaged with SDL. if ENV.compiler == :llvm || (ENV.compiler == :clang && DevelopmentTools.clang_build_version < 421) args << "--disable-assembly" end args << "--without-x" args << "--disable-haptic" << "--disable-joystick" if MacOS.version <= :snow_leopard system "./configure", *args system "make", "install" end test do system bin/"sdl2-config", "--version" end end