aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-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