2014-01-31 17:43:21 +00:00
|
|
|
class Kvazaar < Formula
|
|
|
|
homepage "https://github.com/ultravideo/kvazaar"
|
2015-02-19 14:11:47 +00:00
|
|
|
url "https://github.com/ultravideo/kvazaar/archive/v0.4.0.tar.gz"
|
|
|
|
sha1 "28fce493e8fcd7274993ab46eb1a1c5d07569853"
|
2014-01-31 17:43:21 +00:00
|
|
|
|
2015-02-19 14:59:20 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "14925edf1ac9c07c54c872d7b5d3d7708a9f814a" => :yosemite
|
|
|
|
sha1 "f7c026308db68e957324585b74a3ab0746289a6d" => :mavericks
|
|
|
|
sha1 "d0c6b625b2beefbb9dafe2f9eaad678fe97d0fa7" => :mountain_lion
|
|
|
|
end
|
|
|
|
|
2015-02-19 14:11:47 +00:00
|
|
|
depends_on "yasm" => :build
|
2014-01-31 17:43:21 +00:00
|
|
|
|
|
|
|
def install
|
2014-04-17 04:24:36 +00:00
|
|
|
system "make", "-C", "src"
|
2015-02-19 14:11:47 +00:00
|
|
|
bin.install "src/kvazaar"
|
2014-01-31 17:43:21 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2015-02-19 14:11:47 +00:00
|
|
|
assert_match "HEVC Encoder", shell_output("#{bin}/kvazaar 2>&1", 1)
|
2014-01-31 17:43:21 +00:00
|
|
|
end
|
|
|
|
end
|