51 lines
1.5 KiB
Ruby
51 lines
1.5 KiB
Ruby
class X264 < Formula
|
|
homepage "https://www.videolan.org/developers/x264.html"
|
|
# the latest commit on the stable branch
|
|
url "https://git.videolan.org/git/x264.git", :revision => "c8a773ebfca148ef04f5a60d42cbd7336af0baf6"
|
|
version "r2533"
|
|
|
|
devel do
|
|
# the latest commit on the master branch
|
|
url "https://git.videolan.org/git/x264.git", :revision => "121396c71b4907ca82301d1a529795d98daab5f8"
|
|
version "r2538"
|
|
end
|
|
|
|
head "https://git.videolan.org/git/x264.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "ee6c447f5471c47b64abb846789104714fe22c09cad9a8790f49ecf614f47da1" => :yosemite
|
|
sha256 "d37257f92e918904c8f1af05df1c34e3d975b1affdb1efa2b9d3aa65c2497d1f" => :mavericks
|
|
sha256 "f26ae8e9db2d25c99ad77ebfaceef02d3038a08066b3ea65a2f703c6c3289d4f" => :mountain_lion
|
|
end
|
|
|
|
depends_on "yasm" => :build
|
|
|
|
option "with-10-bit", "Build a 10-bit x264 (default: 8-bit)"
|
|
option "with-mp4=", "Select mp4 output: none (default), l-smash or gpac"
|
|
|
|
deprecated_option "10-bit" => "with-10-bit"
|
|
|
|
case ARGV.value "with-mp4"
|
|
when "l-smash" then depends_on "l-smash"
|
|
when "gpac" then depends_on "gpac"
|
|
end
|
|
|
|
def install
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--enable-shared
|
|
--enable-static
|
|
--enable-strip
|
|
]
|
|
if Formula["l-smash"].installed?
|
|
args << "--disable-gpac"
|
|
elsif Formula["gpac"].installed?
|
|
args << "--disable-lsmash"
|
|
end
|
|
args << "--bit-depth=10" if build.include? "10-bit"
|
|
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
end
|