aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorSteffen Matthischke2014-02-01 00:18:44 +0100
committerMike McQuaid2014-02-02 09:07:23 +0000
commit5aec608aac23ce8eb28d91a3f2590a1024f49289 (patch)
treeedf3e04ae99bbe7e1537cab35590add6e32c1c5f /Library
parentc2957e59db6a7ecedfb927623b24a96335e5b15d (diff)
downloadhomebrew-5aec608aac23ce8eb28d91a3f2590a1024f49289.tar.bz2
x265 0.7
Closes #26318. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/x265.rb15
1 files changed, 2 insertions, 13 deletions
diff --git a/Library/Formula/x265.rb b/Library/Formula/x265.rb
index 5df1cbad0..f257da2ed 100644
--- a/Library/Formula/x265.rb
+++ b/Library/Formula/x265.rb
@@ -2,8 +2,8 @@ require 'formula'
class X265 < Formula
homepage 'http://x265.org'
- url 'https://bitbucket.org/multicoreware/x265/get/0.6.tar.bz2'
- sha1 '67221e7455a3b844d1c6edad771df3b299dab442'
+ url 'https://bitbucket.org/multicoreware/x265/get/0.7.tar.bz2'
+ sha1 'c9bec77b86ba131211c7901542228c3d52abe065'
head 'https://bitbucket.org/multicoreware/x265', :using => :hg
@@ -11,16 +11,6 @@ class X265 < Formula
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
@@ -28,7 +18,6 @@ class X265 < Formula
args << '-DCMAKE_BUILD_TYPE=Release'
system "cmake", "source", *args
- system "make"
system "make", "install"
end
end