blob: 052937ceb1b9535443b724e47532c003b7f762af (
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 "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
|