aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleg Oshmyan2011-11-08 00:00:27 +0000
committerAdam Vandenberg2011-11-21 19:59:17 -0800
commitc90046cf2874e50e74ffabb8c4078e35893ec708 (patch)
tree79c3a83e7fb7b1089c92bd44cb941d06fe76e82f
parentea44c3db2f782347235ea5e8772dd396cee1fbf4 (diff)
downloadhomebrew-c90046cf2874e50e74ffabb8c4078e35893ec708.tar.bz2
libdvdnav 4.2.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/libdvdnav.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/libdvdnav.rb b/Library/Formula/libdvdnav.rb
new file mode 100644
index 000000000..c9671964b
--- /dev/null
+++ b/Library/Formula/libdvdnav.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Libdvdnav < Formula
+ homepage 'http://dvdnav.mplayerhq.hu/'
+ url 'http://dvdnav.mplayerhq.hu/releases/libdvdnav-4.2.0.tar.bz2'
+ head 'svn://svn.mplayerhq.hu/dvdnav/trunk/libdvdnav'
+ md5 '53be8903f9802e101929a3451203bbf6'
+
+ depends_on 'libdvdread'
+
+ def install
+ system "./autogen.sh", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end