aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/x264.rb
blob: 5be7065475569cd4b06b3be573d136941d178fdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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