homebrew-core/Formula/libquicktime.rb

27 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