Get ffmpeg & x264 building on Mac OS X 10.6.

Signed-off-by: David Höppner <0xffea@gmail.com>
This commit is contained in:
James Snyder 2010-03-17 17:06:10 -05:00 committed by David Höppner
parent c33787d3a2
commit 4f7cd737db
2 changed files with 4 additions and 2 deletions

View file

@ -1,7 +1,7 @@
require 'formula'
class Ffmpeg <Formula
head 'svn://svn.ffmpeg.org/ffmpeg/trunk', :revision => 20701
head 'svn://svn.ffmpeg.org/ffmpeg/trunk', :revision => 22585
homepage 'http://ffmpeg.org/'
depends_on 'x264'
@ -9,6 +9,8 @@ class Ffmpeg <Formula
def install
configure_flags = [ "--prefix=#{prefix}",
"--disable-debug",
"--enable-shared",
"--enable-pthreads",
"--enable-nonfree",
"--enable-gpl",
"--enable-libx264"]

View file

@ -1,7 +1,7 @@
require 'formula'
class X264 <Formula
head 'git://git.videolan.org/x264.git', :tag => '6f5f8c~1'
head 'git://git.videolan.org/x264.git', :tag => '114461'
depends_on 'yasm'
homepage 'http://www.videolan.org/developers/x264.html'