homebrew-core/Formula/kvazaar.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

24 lines
683 B
Ruby

class Kvazaar < Formula
desc "HEVC encoder"
homepage "https://github.com/ultravideo/kvazaar"
url "https://github.com/ultravideo/kvazaar/archive/v0.4.0.tar.gz"
sha256 "19af3e92a9689819e69fecff6d3f51c3dac98bda774c45ca2403cfe354da2684"
bottle do
cellar :any
sha1 "14925edf1ac9c07c54c872d7b5d3d7708a9f814a" => :yosemite
sha1 "f7c026308db68e957324585b74a3ab0746289a6d" => :mavericks
sha1 "d0c6b625b2beefbb9dafe2f9eaad678fe97d0fa7" => :mountain_lion
end
depends_on "yasm" => :build
def install
system "make", "-C", "src"
bin.install "src/kvazaar"
end
test do
assert_match "HEVC Encoder", shell_output("#{bin}/kvazaar 2>&1", 1)
end
end