blob: 519df5b54c655caf2fca9ce5b6b4779d73e9c2f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Ffmpegthumbnailer < Formula
homepage 'http://code.google.com/p/ffmpegthumbnailer/'
url 'http://ffmpegthumbnailer.googlecode.com/files/ffmpegthumbnailer-2.0.8.tar.gz'
sha1 '2c54ca16efd953f46547e22799cfc40bd9c24533'
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
|