homebrew-core/Formula/x264.rb

14 lines
327 B
Ruby
Raw Normal View History

require 'formula'
2009-09-27 23:48:11 +00:00
class X264 <Formula
head 'git://git.videolan.org/x264.git'
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