2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-27 23:48:11 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class X264 < Formula
|
2010-04-04 00:53:53 +00:00
|
|
|
homepage 'http://www.videolan.org/developers/x264.html'
|
2012-04-25 23:00:32 +00:00
|
|
|
url 'http://download.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-20120425-2245-stable.tar.bz2'
|
|
|
|
sha1 '969e015e5df24091b5e62873808e6529a7f2fb7f'
|
2012-04-27 07:58:59 +00:00
|
|
|
version 'r2189' # use version.sh to find this with brew install -i --HEAD x264
|
2010-09-08 16:39:33 +00:00
|
|
|
|
2012-04-27 07:58:59 +00:00
|
|
|
head 'http://git.videolan.org/git/x264.git', :branch => 'stable'
|
2010-04-04 00:53:53 +00:00
|
|
|
|
2011-03-26 19:33:49 +00:00
|
|
|
depends_on 'yasm' => :build
|
2009-09-27 23:48:11 +00:00
|
|
|
|
2011-11-16 17:31:17 +00:00
|
|
|
def options
|
|
|
|
[["--10-bit", "Make a 10-bit x264. (default: 8-bit)"]]
|
|
|
|
end
|
|
|
|
|
2009-09-27 23:48:11 +00:00
|
|
|
def install
|
2011-11-16 17:31:17 +00:00
|
|
|
args = ["--prefix=#{prefix}", "--enable-shared"]
|
|
|
|
args << "--bit-depth=10" if ARGV.include?('--10-bit')
|
|
|
|
|
|
|
|
system "./configure", *args
|
2010-04-04 00:53:53 +00:00
|
|
|
|
2011-09-12 21:51:47 +00:00
|
|
|
if MacOS.prefer_64_bit?
|
|
|
|
inreplace 'config.mak' do |s|
|
2010-04-04 00:53:53 +00:00
|
|
|
soflags = s.get_make_var 'SOFLAGS'
|
2011-09-12 21:51:47 +00:00
|
|
|
s.change_make_var! 'SOFLAGS', soflags.gsub(' -Wl,-read_only_relocs,suppress', '')
|
2010-04-04 00:53:53 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-09-27 23:48:11 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|