e286e8dce3
I picked the one from before the point that configure broke. Git blame ftw.
13 lines
347 B
Ruby
13 lines
347 B
Ruby
require 'formula'
|
|
|
|
class X264 <Formula
|
|
head 'git://git.videolan.org/x264.git', :tag => '6f5f8c~1'
|
|
depends_on 'yasm'
|
|
|
|
homepage 'http://www.videolan.org/developers/x264.html'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking","--enable-shared"
|
|
system "make install"
|
|
end
|
|
end
|