2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-10 00:06:52 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Ffmpeg < Formula
|
2011-04-10 13:55:37 +00:00
|
|
|
homepage 'http://ffmpeg.org/'
|
2013-01-07 21:24:43 +00:00
|
|
|
url 'http://ffmpeg.org/releases/ffmpeg-1.1.tar.bz2'
|
|
|
|
sha1 'a006d8833dd7a03dd5b7823671995640322177fe'
|
2010-07-13 14:54:47 +00:00
|
|
|
|
2011-04-10 13:55:37 +00:00
|
|
|
head 'git://git.videolan.org/ffmpeg.git'
|
2009-10-06 03:49:48 +00:00
|
|
|
|
2012-08-24 05:50:43 +00:00
|
|
|
option "without-x264", "Disable H264 encoder"
|
|
|
|
option "without-faac", "Disable AAC encoder"
|
|
|
|
option "without-lame", "Disable MP3 encoder"
|
|
|
|
option "without-xvid", "Disable Xvid MPEG-4 video format"
|
|
|
|
|
|
|
|
option "with-freetype", "Enable FreeType"
|
|
|
|
option "with-theora", "Enable Theora video format"
|
|
|
|
option "with-libvorbis", "Enable Vorbis audio format"
|
|
|
|
option "with-libvpx", "Enable VP8 video format"
|
|
|
|
option "with-rtmpdump", "Enable RTMP protocol"
|
|
|
|
option "with-opencore-amr", "Enable AMR audio format"
|
|
|
|
option "with-libvo-aacenc", "Enable VisualOn AAC encoder"
|
|
|
|
option "with-libass", "Enable ASS/SSA subtitle format"
|
2012-11-01 18:37:23 +00:00
|
|
|
option "with-openjpeg", 'Enable JPEG 2000 image format'
|
|
|
|
option 'with-schroedinger', 'Enable Dirac video format'
|
2012-08-24 05:50:43 +00:00
|
|
|
option 'with-ffplay', 'Enable FFPlay media player'
|
|
|
|
option 'with-tools', 'Enable additional FFmpeg tools'
|
2012-12-12 21:06:01 +00:00
|
|
|
option 'with-fdk-aac', 'Enable the Fraunhofer FDK AAC library'
|
|
|
|
option 'with-openssl', 'Enable OpenSSL encryption library'
|
|
|
|
option 'with-opus', 'Enable the Opus Codec library'
|
2012-08-24 05:50:43 +00:00
|
|
|
|
2012-10-23 23:05:37 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
|
2012-08-14 22:29:49 +00:00
|
|
|
# manpages won't be built without texi2html
|
2012-09-05 04:04:01 +00:00
|
|
|
depends_on 'texi2html' => :build if MacOS.version >= :mountain_lion
|
2011-06-30 01:15:51 +00:00
|
|
|
depends_on 'yasm' => :build
|
2009-09-10 00:06:52 +00:00
|
|
|
|
2012-08-24 05:50:43 +00:00
|
|
|
depends_on 'x264' unless build.include? 'without-x264'
|
|
|
|
depends_on 'faac' unless build.include? 'without-faac'
|
|
|
|
depends_on 'lame' unless build.include? 'without-lame'
|
|
|
|
depends_on 'xvid' unless build.include? 'without-xvid'
|
2011-08-30 14:13:10 +00:00
|
|
|
|
2012-08-24 05:50:43 +00:00
|
|
|
depends_on :freetype if build.include? 'with-freetype'
|
|
|
|
depends_on 'theora' if build.include? 'with-theora'
|
|
|
|
depends_on 'libvorbis' if build.include? 'with-libvorbis'
|
|
|
|
depends_on 'libvpx' if build.include? 'with-libvpx'
|
|
|
|
depends_on 'rtmpdump' if build.include? 'with-rtmpdump'
|
|
|
|
depends_on 'opencore-amr' if build.include? 'with-opencore-amr'
|
|
|
|
depends_on 'libvo-aacenc' if build.include? 'with-libvo-aacenc'
|
|
|
|
depends_on 'libass' if build.include? 'with-libass'
|
|
|
|
depends_on 'openjpeg' if build.include? 'with-openjpeg'
|
|
|
|
depends_on 'sdl' if build.include? 'with-ffplay'
|
2012-08-31 20:46:14 +00:00
|
|
|
depends_on 'speex' if build.include? 'with-speex'
|
2012-11-01 18:48:34 +00:00
|
|
|
depends_on 'schroedinger' if build.include? 'with-schroedinger'
|
2012-12-12 21:06:01 +00:00
|
|
|
depends_on 'fdk-aac' if build.include? 'with-fdk-aac'
|
|
|
|
depends_on 'opus' if build.include? 'with-opus'
|
2012-03-18 20:33:24 +00:00
|
|
|
|
2009-09-10 00:06:52 +00:00
|
|
|
def install
|
2011-06-30 01:15:51 +00:00
|
|
|
args = ["--prefix=#{prefix}",
|
2011-08-18 02:35:50 +00:00
|
|
|
"--enable-shared",
|
2013-01-15 05:16:23 +00:00
|
|
|
"--enable-pthreads",
|
2010-08-14 17:05:39 +00:00
|
|
|
"--enable-gpl",
|
2011-06-30 01:15:51 +00:00
|
|
|
"--enable-version3",
|
|
|
|
"--enable-nonfree",
|
2011-09-24 01:05:58 +00:00
|
|
|
"--enable-hardcoded-tables",
|
2013-01-13 19:05:50 +00:00
|
|
|
"--enable-avresample",
|
2012-06-25 13:12:38 +00:00
|
|
|
"--cc=#{ENV.cc}",
|
|
|
|
"--host-cflags=#{ENV.cflags}",
|
|
|
|
"--host-ldflags=#{ENV.ldflags}"
|
|
|
|
]
|
2010-08-14 17:05:39 +00:00
|
|
|
|
2012-08-24 05:50:43 +00:00
|
|
|
args << "--enable-libx264" unless build.include? 'without-x264'
|
|
|
|
args << "--enable-libfaac" unless build.include? 'without-faac'
|
|
|
|
args << "--enable-libmp3lame" unless build.include? 'without-lame'
|
|
|
|
args << "--enable-libxvid" unless build.include? 'without-xvid'
|
|
|
|
|
|
|
|
args << "--enable-libfreetype" if build.include? 'with-freetype'
|
|
|
|
args << "--enable-libtheora" if build.include? 'with-theora'
|
|
|
|
args << "--enable-libvorbis" if build.include? 'with-libvorbis'
|
|
|
|
args << "--enable-libvpx" if build.include? 'with-libvpx'
|
2012-08-28 16:26:29 +00:00
|
|
|
args << "--enable-librtmp" if build.include? 'with-rtmpdump'
|
2012-08-24 05:50:43 +00:00
|
|
|
args << "--enable-libopencore-amrnb" << "--enable-libopencore-amrwb" if build.include? 'with-opencore-amr'
|
|
|
|
args << "--enable-libvo-aacenc" if build.include? 'with-libvo-aacenc'
|
|
|
|
args << "--enable-libass" if build.include? 'with-libass'
|
|
|
|
args << "--enable-ffplay" if build.include? 'with-ffplay'
|
2012-08-31 20:46:14 +00:00
|
|
|
args << "--enable-libspeex" if build.include? 'with-speex'
|
2012-11-01 08:40:51 +00:00
|
|
|
args << '--enable-libschroedinger' if build.include? 'with-schroedinger'
|
2012-12-12 21:06:01 +00:00
|
|
|
args << "--enable-libfdk-aac" if build.include? 'with-fdk-aac'
|
|
|
|
args << "--enable-openssl" if build.include? 'with-openssl'
|
|
|
|
args << "--enable-libopus" if build.include? 'with-opus'
|
2012-11-01 08:40:51 +00:00
|
|
|
|
|
|
|
if build.include? 'with-openjpeg'
|
|
|
|
args << '--enable-libopenjpeg'
|
|
|
|
args << '--extra-cflags=' + %x[pkg-config --cflags libopenjpeg].chomp
|
|
|
|
end
|
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
|
2012-09-05 04:04:01 +00:00
|
|
|
ENV.append_to_cflags "-mdynamic-no-pic" if MacOS.version == :leopard or Hardware.is_32_bit?
|
2010-04-21 05:08:33 +00:00
|
|
|
|
2010-08-14 17:05:39 +00:00
|
|
|
system "./configure", *args
|
2010-01-14 20:56:04 +00:00
|
|
|
|
2011-03-18 17:30:47 +00:00
|
|
|
if MacOS.prefer_64_bit?
|
2010-08-08 04:04:37 +00:00
|
|
|
inreplace 'config.mak' do |s|
|
2010-01-14 20:56:04 +00:00
|
|
|
shflags = s.get_make_var 'SHFLAGS'
|
2011-04-10 13:55:37 +00:00
|
|
|
if shflags.gsub!(' -Wl,-read_only_relocs,suppress', '')
|
|
|
|
s.change_make_var! 'SHFLAGS', shflags
|
|
|
|
end
|
2010-01-14 20:56:04 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-09-10 00:06:52 +00:00
|
|
|
system "make install"
|
2011-08-30 14:13:10 +00:00
|
|
|
|
2012-08-13 14:50:31 +00:00
|
|
|
if build.include? 'with-tools'
|
2011-08-30 14:13:10 +00:00
|
|
|
system "make alltools"
|
|
|
|
bin.install Dir['tools/*'].select {|f| File.executable? f}
|
|
|
|
end
|
2009-09-10 00:06:52 +00:00
|
|
|
end
|
2011-03-16 02:07:39 +00:00
|
|
|
|
2009-09-10 00:06:52 +00:00
|
|
|
end
|