homebrew-core/Formula/mp4v2.rb

15 lines
364 B
Ruby

require "formula"
class Mp4v2 < Formula
homepage "http://code.google.com/p/mp4v2/"
url "https://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