Formula for SDL.

This commit is contained in:
Adam Vandenberg 2009-08-29 20:46:29 -07:00 committed by Max Howell
parent f417831be1
commit 9faf689de1

12
Formula/sdl.rb Normal file
View file

@ -0,0 +1,12 @@
require 'brewkit'
class Sdl <Formula
@url='http://www.libsdl.org/release/SDL-1.2.13.tar.gz'
@homepage='http://www.libsdl.org/index.php'
@md5='c6660feea2a6834de10bc71b2f8e4d88'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end