aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2011-02-18 20:31:19 -0800
committerAdam Vandenberg2011-02-18 20:31:19 -0800
commit926311f406593c0d115c2b2a46066d22e3544c01 (patch)
treeca41ff2d088cc6f5bbcee7df55a1b9d8e4bb9fae /Library
parentfe0a6e1e4b8d61d3d172c26506b659f2f6ddcb03 (diff)
downloadhomebrew-926311f406593c0d115c2b2a46066d22e3544c01.tar.bz2
Added xsw presentation software.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/xsw.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/xsw.rb b/Library/Formula/xsw.rb
new file mode 100644
index 000000000..c8e3791cc
--- /dev/null
+++ b/Library/Formula/xsw.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class Xsw <Formula
+ url 'http://xsw.googlecode.com/files/xsw-0.3.5.tar.gz'
+ homepage 'http://code.google.com/p/xsw/'
+ sha1 'fe4cffcc8bcd3149f4ecbf2011ad78a8ab7f1dd4'
+
+ depends_on 'sdl'
+ depends_on 'sdl_ttf'
+ depends_on 'sdl_image'
+ depends_on 'sdl_gfx'
+
+ def install
+ system "./configure", "--prefix=#{prefix}"
+ system "make install"
+ end
+end