aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mp4v2.rb
diff options
context:
space:
mode:
authorSebastian Albers2010-04-16 13:46:40 +0200
committerAdam Vandenberg2010-08-12 07:53:30 -0700
commit8601eae3b72c9d475a7832c654313cad0da3c6fc (patch)
tree1725185a696aed71b9f86f47d743d8cb83581ad3 /Library/Formula/mp4v2.rb
parent6d189ab2df5bbeb71daac25fe7c25bc04322b7fd (diff)
downloadhomebrew-8601eae3b72c9d475a7832c654313cad0da3c6fc.tar.bz2
mp4v2 formula added
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/mp4v2.rb')
-rw-r--r--Library/Formula/mp4v2.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/mp4v2.rb b/Library/Formula/mp4v2.rb
new file mode 100644
index 000000000..0e1f8fa7a
--- /dev/null
+++ b/Library/Formula/mp4v2.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Mp4v2 <Formula
+ url 'http://mp4v2.googlecode.com/files/mp4v2-1.9.1.tar.bz2'
+ homepage 'http://code.google.com/p/mp4v2/'
+ md5 '986701929ef15b03155ac4fb16444797'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "make install"
+ end
+end