diff options
| author | David Conrad | 2009-10-05 23:49:48 -0400 |
|---|---|---|
| committer | Max Howell | 2009-10-09 00:47:02 +0100 |
| commit | 21ff4b5edaa4b1b9ee5ae8a3ec37c30c468bacb9 (patch) | |
| tree | bfd0def89fcc3a941fbee61a6c71316648849218 /Library | |
| parent | 0c021f7e4b5da446cefddfcd48a4b6e610559393 (diff) | |
| download | homebrew-21ff4b5edaa4b1b9ee5ae8a3ec37c30c468bacb9.tar.bz2 | |
ffmpeg configure script detects x86_64 correctly on 10.6 as of r20134
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/ffmpeg.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/ffmpeg.rb b/Library/Formula/ffmpeg.rb index c63a3923b..38d99bd32 100644 --- a/Library/Formula/ffmpeg.rb +++ b/Library/Formula/ffmpeg.rb @@ -1,8 +1,9 @@ require 'brewkit' class Ffmpeg <Formula - @head='svn://svn.ffmpeg.org/ffmpeg/trunk' - @homepage='http://ffmpeg.org/' + head 'svn://svn.ffmpeg.org/ffmpeg/trunk' + homepage 'http://ffmpeg.org/' + depends_on 'x264' def install @@ -11,7 +12,6 @@ class Ffmpeg <Formula "--enable-nonfree", "--enable-gpl", "--enable-libx264"] - configure_flags << "--arch=x64_64" if Hardware.is_64_bit? and MACOS_VERSION >= 10.6 system "./configure", *configure_flags system "make install" end |
