blob: 0a4d082b724bca9c08f4e14ffbc891853c8b455f (
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
31
32
33
34
35
36
37
38
39
  | 
require "formula"
class Mlt < Formula
  homepage "http://www.mltframework.org/"
  url "https://downloads.sourceforge.net/mlt/mlt/mlt-0.9.0.tar.gz"
  sha1 "76bf18f4442801fae963c5a676d6626e383d1617"
  depends_on "pkg-config" => :build
  depends_on "atk"
  depends_on "ffmpeg"
  depends_on "frei0r"
  depends_on "libdv"
  depends_on "libsamplerate"
  depends_on "libvorbis"
  depends_on "sdl"
  depends_on "sox"
  depends_on "gtk+" => :optional
  if build.with? "gtk"
    depends_on "pango"
    depends_on "gdk-pixbuf"
  end
  def install
    args = ["--prefix=#{prefix}",
            "--disable-jackrack",
            "--disable-swfdec"]
    args << "--disable-gtk" if build.without? "gtk"
    system "./configure", *args
    system "make"
    system "make", "install"
  end
end
  |