homebrew-core/Formula/h264bitstream.rb

19 lines
740 B
Ruby

class H264bitstream < Formula
desc "Library for reading and writing H264 video streams"
homepage "http://h264bitstream.sourceforge.net/"
url "https://downloads.sourceforge.net/project/h264bitstream/h264bitstream/0.1.9/h264bitstream-0.1.9.tar.gz"
sha256 "a18dee311adf6533931f702853b39058b1b7d0e484d91b33c6ba6442567d4764"
bottle do
cellar :any
sha256 "cb603960e6eb5ab5f78cc41546c6c4f1bdf53f07fcf7c7af7c4e714ad4b14dce" => :el_capitan
sha256 "3989d4b3baa711dd6e4db74d74be519ef6661f8e93d62e258252f932f7d6699e" => :yosemite
sha256 "f26e8535f5007317aeda05e886453604c97abc0e0892ce6975fee09a7900c1f8" => :mavericks
end
def install
system "./configure", "--prefix=#{prefix}"
system "make", "install"
end
end