x264 formula

master
Christoph Sturm 2009-09-28 01:48:11 +02:00 committed by Max Howell
parent d151f0f56c
commit 354d699e0a
1 changed files with 13 additions and 0 deletions

13
Formula/x264.rb Normal file
View File

@ -0,0 +1,13 @@
require 'brewkit'
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