2010-10-31 13:56:54 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Ffmpegthumbnailer < Formula
|
2010-10-31 13:56:54 +00:00
|
|
|
homepage 'http://code.google.com/p/ffmpegthumbnailer/'
|
2012-08-30 15:29:55 +00:00
|
|
|
url 'http://ffmpegthumbnailer.googlecode.com/files/ffmpegthumbnailer-2.0.8.tar.gz'
|
|
|
|
sha1 '2c54ca16efd953f46547e22799cfc40bd9c24533'
|
2010-10-31 13:56:54 +00:00
|
|
|
|
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
depends_on 'jpeg'
|
|
|
|
depends_on 'ffmpeg'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
2011-09-20 21:59:29 +00:00
|
|
|
"--prefix=#{prefix}"
|
2010-10-31 13:56:54 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|