2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-08-30 03:46:29 +00:00
|
|
|
|
|
|
|
class Sdl <Formula
|
2009-10-21 03:11:35 +00:00
|
|
|
url 'http://www.libsdl.org/release/SDL-1.2.14.tar.gz'
|
|
|
|
homepage 'http://www.libsdl.org/'
|
|
|
|
md5 'e52086d1b508fa0b76c52ee30b55bec4'
|
2009-09-21 22:51:18 +00:00
|
|
|
|
2009-08-30 03:46:29 +00:00
|
|
|
def install
|
2009-09-29 14:40:18 +00:00
|
|
|
ENV.gcc_4_2
|
2009-09-21 22:51:18 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
2009-09-25 22:32:17 +00:00
|
|
|
"--disable-nasm"
|
2009-08-30 03:46:29 +00:00
|
|
|
system "make install"
|
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
|