a649d9b4ec
This modifies multiple formulae in a single commit, replacing the patch suffix with diff per Homebrew/homebrew#28315. I used the following command: ~~~ sed -i -e 's@patch"$@diff"@' `grep -rlI 'commit.*patch"$' .` ~~~ The patch shasums are then computed using: ~~~ brew fetch --build-from-source `git st | sed -e 's@^ M@@'` ~~~ and manually updated. Fixes Homebrew/homebrew#28315. Fixes Homebrew/homebrew#28335. Closes Homebrew/homebrew#28339. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
67 lines
1.9 KiB
Ruby
67 lines
1.9 KiB
Ruby
require 'formula'
|
|
|
|
class X264 < Formula
|
|
homepage "http://www.videolan.org/developers/x264.html"
|
|
# the latest commit on the stable branch
|
|
url "http://git.videolan.org/git/x264.git", :revision => "aff928d2a2f601072cebecfd1ac5ff768880cf88"
|
|
version "r2397"
|
|
head "http://git.videolan.org/git/x264.git"
|
|
|
|
devel do
|
|
# the latest commit on the master branch
|
|
url "http://git.videolan.org/git/x264.git", :revision => "d6b4e63d2ed8d444b77c11b36c1d646ee5549276"
|
|
version "r2409"
|
|
end
|
|
|
|
# Support building with Clang 3.4
|
|
# The patch will be merged in the official repository soon.
|
|
patch do
|
|
url "https://github.com/DarkShikari/x264-devel/commit/bc3b27.diff"
|
|
sha1 "85145f2123ef4a881749b8524583a56ead8494ef"
|
|
end
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "7a35f1da2e78eedb2be6d8f44d4bd1bc2a62339d" => :mavericks
|
|
sha1 "1b55c37b83f95a589b1832ccab7d8dae3700f5dc" => :mountain_lion
|
|
sha1 "19c9d9a6df12cbc4a6201c044215d2be609e6844" => :lion
|
|
end
|
|
|
|
depends_on 'yasm' => :build
|
|
|
|
option '10-bit', 'Build a 10-bit x264 (default: 8-bit)'
|
|
option "with-mp4=", "Select mp4 output: none (default), l-smash or gpac"
|
|
|
|
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'
|
|
|
|
# For running version.sh correctly
|
|
buildpath.install_symlink cached_download/".git"
|
|
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Because libx264 has a rapidly-changing API, formulae that link against
|
|
it should be reinstalled each time you upgrade x264. Examples include:
|
|
avidemux, ffmbc, ffmpeg, gst-plugins-ugly
|
|
EOS
|
|
end
|
|
end
|