aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libquicktime.rb
blob: 59e8645d94464ddd532fa55506d92ca1d219fec2 (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
require 'formula'

class Libquicktime < Formula
  homepage 'http://libquicktime.sourceforge.net/'
  url 'http://downloads.sourceforge.net/project/libquicktime/libquicktime/1.2.4/libquicktime-1.2.4.tar.gz'
  md5 '81cfcebad9b7ee7e7cfbefc861d6d61b'

  depends_on 'pkg-config' => :build
  depends_on 'gettext'
  depends_on 'jpeg' => :optional
  depends_on 'lame' => :optional
  depends_on 'schroedinger' => :optional
  depends_on 'ffmpeg' => :optional
  depends_on 'libvorbis' => :optional

  def install
    system "./configure", "--disable-debug",
                          "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--enable-gpl",
                          "--without-doxygen",
                          "--without-gtk"
    system "make"
    system "make install"
  end
end