6273463080
Closes Homebrew/homebrew#24927. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
34 lines
766 B
Ruby
34 lines
766 B
Ruby
require 'formula'
|
|
|
|
class X265 < Formula
|
|
homepage 'http://x265.org'
|
|
url 'https://bitbucket.org/multicoreware/x265/get/0.6.tar.bz2'
|
|
sha1 '67221e7455a3b844d1c6edad771df3b299dab442'
|
|
|
|
head 'https://bitbucket.org/multicoreware/x265', :using => :hg
|
|
|
|
depends_on 'yasm' => :build
|
|
depends_on 'cmake' => :build
|
|
depends_on :macos => :lion
|
|
|
|
fails_with :gcc do
|
|
build 5666
|
|
cause '-mstackrealign not supported in the 64bit mode'
|
|
end
|
|
|
|
fails_with :llvm do
|
|
build 2335
|
|
cause '-mstackrealign not supported in the 64bit mode'
|
|
end
|
|
|
|
def install
|
|
|
|
args = std_cmake_args
|
|
args.delete '-DCMAKE_BUILD_TYPE=None'
|
|
args << '-DCMAKE_BUILD_TYPE=Release'
|
|
|
|
system "cmake", "source", *args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
end
|