aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mjpegtools.rb
blob: 4d13763b7c7edcd635a73ce60f8baf37513c777e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
require 'formula'

class Mjpegtools < Formula
  homepage 'http://mjpeg.sourceforge.net/'
  url 'http://downloads.sourceforge.net/project/mjpeg/mjpegtools/2.0.0/mjpegtools-2.0.0.tar.gz'
  sha1 'f411e8573d446711dbe8455a6ae9257e1afe1e70'

  depends_on :x11 if MacOS::X11.installed?

  depends_on 'pkg-config' => :build
  depends_on 'jpeg'
  depends_on 'libquicktime' => :optional
  depends_on 'libdv' => :optional
  depends_on 'gtk+' => :optional
  depends_on 'sdl_gfx' => :optional

  fails_with :clang do
    cause <<-EOS.undent
      In file included from newdenoise.cc:19:
      ./MotionSearcher.hh:2199:3: error: use of undeclared identifier 'DeleteRegion'
    EOS
  end

  def install
    system "./configure", "--disable-dependency-tracking",
                          "--enable-simd-accel",
                          "--prefix=#{prefix}"
    system "make install"
  end
end