homebrew-core/Formula/x264.rb
Max Howell e286e8dce3 Use a stable commit
I picked the one from before the point that configure broke.

Git blame ftw.
2009-12-02 10:38:26 +00:00

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