aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorCody Boisclair2011-06-23 09:55:21 -0400
committerAdam Vandenberg2011-06-23 10:13:09 -0700
commitd82b85b8759453d002b1d0aa7fc3b75ccea2a12b (patch)
treef09961d829df0a71c5f929e7fe4dc82117dc0d8f /Library
parentc95b133430e9b60cddd3fc383bce0449e8bce06e (diff)
downloadhomebrew-d82b85b8759453d002b1d0aa7fc3b75ccea2a12b.tar.bz2
uade 2.13
UADE is the Unix Amiga Delitracker Emulator Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/uade.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/uade.rb b/Library/Formula/uade.rb
new file mode 100644
index 000000000..89f13431a
--- /dev/null
+++ b/Library/Formula/uade.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Uade < Formula
+ url 'http://zakalwe.fi/uade/uade2/uade-2.13.tar.bz2'
+ homepage 'http://zakalwe.fi/uade/'
+ md5 '29bb1018b7fa58f93b246264c160bdc6'
+
+ depends_on 'pkg-config' => :build
+ depends_on 'libao'
+
+ def install
+ system "./configure", "--prefix=#{prefix}"
+ system "make install"
+ end
+end