homebrew-core/Formula/libquicktime.rb
fpartridge 4e00580807 libquicktime 1.2.4
[jn: add --without-gtk; gtk+ is (currently) not in the dependency tree
here.]

Closes Homebrew/homebrew#12681.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-06-08 20:55:11 -05:00

26 lines
838 B
Ruby

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