aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/sdl.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/sdl.rb b/Library/Formula/sdl.rb
new file mode 100644
index 000000000..278594798
--- /dev/null
+++ b/Library/Formula/sdl.rb
@@ -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