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-03-28 01:55:20 +00:00
|
|
|
# The version is _not_ 2245. See http://www.x264.nl/x264/changelog.txt for
|
|
|
|
# the revision numbers that are attached to each commit.
|
|
|
|
url 'http://download.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-20120327-2245-stable.tar.bz2'
|
|
|
|
version 'r2184'
|
|
|
|
md5 '0660e5829dc7f621bb98124440e38924'
|
2010-09-08 16:39:33 +00:00
|
|
|
|
|
|
|
head 'git://git.videolan.org/x264.git'
|
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
|