blob: af16ce2ce6f37c9113b8b535da3f7d36695e234c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
require 'formula'
class X264 <Formula
homepage 'http://www.videolan.org/developers/x264.html'
url 'git://git.videolan.org/x264.git',
:tag => '20fa784d2d9e0d5e524d4e3834699e9ff9b57511'
depends_on 'yasm'
def install
system "./version.sh"
system "./configure", "--prefix=#{prefix}",
"--enable-shared"
inreplace 'config.mak' do |s|
ldflags = s.get_make_var 'LDFLAGS'
s.change_make_var! 'LDFLAGS', ldflags.gsub!(' -s', '')
if snow_leopard_64?
soflags = s.get_make_var 'SOFLAGS'
s.change_make_var! 'SOFLAGS', soflags.gsub!(' -Wl,-read_only_relocs,suppress', '')
end
end
system "make install"
end
end
|