homebrew-core/Formula/sdl.rb

30 lines
902 B
Ruby
Raw Normal View History

require 'formula'
2009-08-30 03:46:29 +00:00
2011-03-10 05:11:03 +00:00
class Sdl < Formula
url 'http://www.libsdl.org/release/SDL-1.2.14.tar.gz'
head 'http://hg.libsdl.org/SDL', :using => :hg
homepage 'http://www.libsdl.org/'
md5 'e52086d1b508fa0b76c52ee30b55bec4'
# 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.
def self.use_homebrew_prefix files
inreplace files, '@prefix@', HOMEBREW_PREFIX
end
2009-08-30 03:46:29 +00:00
def install
fails_with_llvm
Sdl.use_homebrew_prefix %w[sdl.pc.in sdl-config.in]
2010-10-30 15:21:17 +00:00
# Sdl assumes X11 is present on UNIX
ENV.x11
system "./autogen.sh" if ARGV.build_head?
2010-07-31 17:25:19 +00:00
system "./configure", "--prefix=#{prefix}", "--disable-nasm"
2009-08-30 03:46:29 +00:00
system "make install"
# Copy source files needed for Ojective-C support.
libexec.install Dir["src/main/macosx/*"]
2009-08-30 03:46:29 +00:00
end
end