aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/adplug.rb
diff options
context:
space:
mode:
authorpalxex2010-07-02 10:12:05 +0800
committerAdam Vandenberg2010-07-01 23:15:59 -0700
commit9858ece197591c7c1b97a2d4bf212418f21140e4 (patch)
tree7a88f1783a8b37587f5d6802d9e551e0664f390f /Library/Formula/adplug.rb
parent70263f5a009708cabab603973473b5a71f323047 (diff)
downloadhomebrew-9858ece197591c7c1b97a2d4bf212418f21140e4.tar.bz2
Add adplug
Diffstat (limited to 'Library/Formula/adplug.rb')
-rw-r--r--Library/Formula/adplug.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/adplug.rb b/Library/Formula/adplug.rb
new file mode 100644
index 000000000..5a091a7f5
--- /dev/null
+++ b/Library/Formula/adplug.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Adplug <Formula
+ url 'http://downloads.sourceforge.net/project/adplug/AdPlug%20core%20library/2.2.1/adplug-2.2.1.tar.bz2'
+ homepage 'http://adplug.sf.net'
+ md5 '8f815fd5d254de0fe5df818df9d1d8af'
+
+ depends_on 'pkg-config'
+ depends_on 'libbinio'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "make install"
+ end
+end