aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ffmpegthumbnailer.rb
blob: 1d46b2471fda6f8c4eaf390ef18fb104dcfc5371 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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