aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEdward George2010-04-13 22:32:46 +0100
committerAdam Vandenberg2010-04-18 10:04:45 -0700
commit11c121a477ceec0563088ae4a0078e00f8a0204c (patch)
tree57a22edfc4663935747ff6720a756dac055dcf14
parente1e0fbb96594d14f857451f77ec9346d3fc2b1f8 (diff)
downloadhomebrew-11c121a477ceec0563088ae4a0078e00f8a0204c.tar.bz2
New Formula: libdlna 0.2.3
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/libdlna.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/libdlna.rb b/Library/Formula/libdlna.rb
new file mode 100644
index 000000000..70b02dee0
--- /dev/null
+++ b/Library/Formula/libdlna.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class Libdlna <Formula
+ url 'http://libdlna.geexbox.org/releases/libdlna-0.2.3.tar.bz2'
+ homepage 'http://libdlna.geexbox.org/'
+ md5 ''
+
+ def patches
+ # fixes ffmpeg locations
+ "http://gist.github.com/raw/356431/fbddfeee80d9224f6c67886b119fbd813f3c0ffa/libdlna.patch"
+ end
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug"
+ system "make install"
+ end
+end