blob: acbc92ef95dfdbf3b8230b6c8445abba36dde17d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | 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"
  bottle do
    cellar :any
    revision 1
    sha1 "7cdf66572d30457b9ccde22e5adb254f8423372a" => :yosemite
    sha1 "423dc3e6a70da565233d7093a82089aa725d021e" => :mavericks
    sha1 "7adca200e0baf9cd0ba94acec0417d6a5dc74ad9" => :mountain_lion
  end
  def install
    system "./configure", "--disable-debug", "--prefix=#{prefix}"
    system "make"
    system "make install"
    system "make install-man"
  end
end
 |