homebrew-core/Formula/ffmpegthumbnailer.rb
Pavel Zavyalov 4e751c9645 ffmpegthumbnailer 2.0.6
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-06 19:07:22 -08:00

18 lines
560 B
Ruby

require 'formula'
class Ffmpegthumbnailer <Formula
url 'http://ffmpegthumbnailer.googlecode.com/files/ffmpegthumbnailer-2.0.6.tar.gz'
homepage 'http://code.google.com/p/ffmpegthumbnailer/'
sha1 'c565eb31910ea03801045e19230870c7e772b1a6'
depends_on 'pkg-config' => :build
depends_on 'jpeg'
depends_on 'ffmpeg'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"#,
# "--enable-jpeg"#, "--with-jpeg"
system "make install"
end
end