aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorCarter Allen2010-05-05 19:59:26 -0600
committerAdam Vandenberg2010-05-05 19:31:26 -0700
commit89c3f62cc98232968fe5cc49c014f98f85bed798 (patch)
tree35902f3f05385e5a392662693fd3559c8ac47c59 /Library/Formula
parent3034f1bead601d9d613f30922e91d4787c52ee53 (diff)
downloadhomebrew-89c3f62cc98232968fe5cc49c014f98f85bed798.tar.bz2
Added libdca formula.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libdca.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/libdca.rb b/Library/Formula/libdca.rb
new file mode 100644
index 000000000..0f2bc23c4
--- /dev/null
+++ b/Library/Formula/libdca.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Libdca <Formula
+ url 'http://download.videolan.org/pub/videolan/libdca/0.0.5/libdca-0.0.5.tar.bz2'
+ homepage 'http://www.videolan.org/developers/libdca.html'
+ md5 'dab6b2795c66a82a6fcd4f8343343021'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "make"
+ system "make install"
+ end
+end