blob: a16db9504880cc67e194b76b5ad0294504153d35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
|