8829204c1e
The formula is 10.6 only because it compiles 64 bit, if you are a Leopard user please patch! The MACOS_VERSION constant may be useful. FFmpeg is a complete, cross-platform solution to record, convert and stream audio and video. It includes libavcodec - the leading audio/video codec library.
14 lines
349 B
Ruby
14 lines
349 B
Ruby
require 'brewkit'
|
|
|
|
class Ffmpeg <Formula
|
|
@head='svn://svn.ffmpeg.org/ffmpeg/trunk'
|
|
@homepage='http://ffmpeg.org/'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}",
|
|
"--disable-debug",
|
|
"--enable-nonfree",
|
|
"arch=x86_64"
|
|
system "make install"
|
|
end
|
|
end
|