b52082b55f
stripped out the old patch for lion Closes Homebrew/homebrew#13878. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
363 B
Ruby
14 lines
363 B
Ruby
require 'formula'
|
|
|
|
class Mp4v2 < Formula
|
|
homepage 'http://code.google.com/p/mp4v2/'
|
|
url 'http://mp4v2.googlecode.com/files/mp4v2-2.0.0.tar.bz2'
|
|
sha1 '193260cfb7201e6ec250137bcca1468d4d20e2f0'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--prefix=#{prefix}"
|
|
system "make"
|
|
system "make install"
|
|
system "make install-man"
|
|
end
|
|
end
|