846f16a4cb
Fixes an incompatibility with FFmpeg 0.8.x. Fixes Homebrew/homebrew#7729.
17 lines
491 B
Ruby
17 lines
491 B
Ruby
require 'formula'
|
|
|
|
class Ffmpegthumbnailer < Formula
|
|
url 'http://ffmpegthumbnailer.googlecode.com/files/ffmpegthumbnailer-2.0.7.tar.gz'
|
|
homepage 'http://code.google.com/p/ffmpegthumbnailer/'
|
|
md5 '2b5726894792ef484793dce9568a065a'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'jpeg'
|
|
depends_on 'ffmpeg'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|