2010-04-16 11:46:40 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Mp4v2 < Formula
|
2010-04-16 11:46:40 +00:00
|
|
|
homepage 'http://code.google.com/p/mp4v2/'
|
2012-08-02 02:52:10 +00:00
|
|
|
url 'http://mp4v2.googlecode.com/files/mp4v2-2.0.0.tar.bz2'
|
|
|
|
sha1 '193260cfb7201e6ec250137bcca1468d4d20e2f0'
|
2010-04-16 11:46:40 +00:00
|
|
|
|
|
|
|
def install
|
2012-03-29 03:25:24 +00:00
|
|
|
system "./configure", "--disable-debug", "--prefix=#{prefix}"
|
|
|
|
system "make"
|
2010-04-16 11:46:40 +00:00
|
|
|
system "make install"
|
2012-03-29 03:25:24 +00:00
|
|
|
system "make install-man"
|
2010-04-16 11:46:40 +00:00
|
|
|
end
|
|
|
|
end
|