homebrew-core/Formula/mp4v2.rb
Baptiste Fontaine 07dc2b3c99 batch http->https fixes
Closes Homebrew/homebrew#41553.

Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
2015-07-12 12:53:09 +02:00

23 lines
660 B
Ruby

require "formula"
class Mp4v2 < Formula
desc "Read, create, and modify MP4 files"
homepage "https://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