2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-10 00:06:52 +00:00
|
|
|
|
|
|
|
class Ffmpeg <Formula
|
2010-06-16 15:10:13 +00:00
|
|
|
url 'http://ffmpeg.org/releases/ffmpeg-0.6.tar.bz2'
|
2009-10-06 03:49:48 +00:00
|
|
|
homepage 'http://ffmpeg.org/'
|
2010-07-13 14:54:47 +00:00
|
|
|
sha1 'c130e3bc368251b9130ce6eafb44fe8c3993ff5c'
|
|
|
|
|
|
|
|
head 'svn://svn.ffmpeg.org/ffmpeg/trunk'
|
2009-10-06 03:49:48 +00:00
|
|
|
|
2010-01-14 20:56:04 +00:00
|
|
|
depends_on 'x264' => :optional
|
|
|
|
depends_on 'faac' => :optional
|
|
|
|
depends_on 'faad2' => :optional
|
|
|
|
depends_on 'lame' => :optional
|
2010-08-04 12:24:24 +00:00
|
|
|
depends_on 'theora' => :optional
|
2010-08-04 12:32:29 +00:00
|
|
|
depends_on 'libvorbis' => :optional
|
2010-08-04 12:24:24 +00:00
|
|
|
depends_on 'libogg' => :optional
|
2010-08-26 17:55:55 +00:00
|
|
|
depends_on 'libvpx' => :optional
|
2009-09-10 00:06:52 +00:00
|
|
|
|
|
|
|
def install
|
2010-08-14 17:05:39 +00:00
|
|
|
args = ["--disable-debug",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--enable-shared",
|
|
|
|
"--enable-pthreads",
|
|
|
|
"--enable-nonfree",
|
|
|
|
"--enable-gpl",
|
2010-08-08 04:04:37 +00:00
|
|
|
"--disable-indev=jack"]
|
2010-08-14 17:05:39 +00:00
|
|
|
|
|
|
|
args << "--enable-libx264" if Formula.factory('x264').installed?
|
|
|
|
args << "--enable-libfaac" if Formula.factory('faac').installed?
|
|
|
|
args << "--enable-libfaad" if Formula.factory('faad2').installed?
|
|
|
|
args << "--enable-libmp3lame" if Formula.factory('lame').installed?
|
|
|
|
args << "--enable-libtheora" if Formula.factory('theora').installed?
|
|
|
|
args << "--enable-libvorbis" if Formula.factory('libvorbis').installed?
|
2010-08-26 17:55:55 +00:00
|
|
|
args << "--enable-libvpx" if Formula.factory('libvpx').installed?
|
2010-01-14 20:56:04 +00:00
|
|
|
|
2010-04-21 05:08:33 +00:00
|
|
|
# For 32-bit compilation under gcc 4.2, see:
|
|
|
|
# http://trac.macports.org/ticket/20938#comment:22
|
2010-08-08 03:53:10 +00:00
|
|
|
if MACOS_VERSION >= 10.6 and Hardware.is_32_bit?
|
2010-04-21 05:08:33 +00:00
|
|
|
ENV.append_to_cflags "-mdynamic-no-pic"
|
|
|
|
end
|
|
|
|
|
2010-08-14 17:05:39 +00:00
|
|
|
system "./configure", *args
|
2010-01-14 20:56:04 +00:00
|
|
|
|
2010-08-08 04:04:37 +00:00
|
|
|
if snow_leopard_64?
|
|
|
|
inreplace 'config.mak' do |s|
|
2010-01-14 20:56:04 +00:00
|
|
|
shflags = s.get_make_var 'SHFLAGS'
|
|
|
|
s.change_make_var! 'SHFLAGS', shflags.gsub!(' -Wl,-read_only_relocs,suppress', '')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-09-10 00:06:52 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|