aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorfpartridge2012-06-08 22:15:02 +0200
committerJack Nagel2012-06-08 20:55:11 -0500
commitff8d33d2b59e53655093bc309ca2069276543b19 (patch)
treea3cb8da02f58f09f7770d79814fe57b9107c6bf5 /Library
parent20d09b654ccb8f1759ca225819f98852212e6fc7 (diff)
downloadhomebrew-ff8d33d2b59e53655093bc309ca2069276543b19.tar.bz2
libquicktime 1.2.4
[jn: add --without-gtk; gtk+ is (currently) not in the dependency tree here.] Closes #12681. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/libquicktime.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/Library/Formula/libquicktime.rb b/Library/Formula/libquicktime.rb
index a9731dafd..59e8645d9 100644
--- a/Library/Formula/libquicktime.rb
+++ b/Library/Formula/libquicktime.rb
@@ -1,9 +1,9 @@
require 'formula'
class Libquicktime < Formula
- url 'http://downloads.sourceforge.net/project/libquicktime/libquicktime/1.2.3/libquicktime-1.2.3.tar.gz'
homepage 'http://libquicktime.sourceforge.net/'
- md5 '9a82a1546408605ea8337b3a7c78786e'
+ 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'
@@ -14,10 +14,12 @@ class Libquicktime < Formula
depends_on 'libvorbis' => :optional
def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ system "./configure", "--disable-debug",
+ "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-gpl",
- "--without-doxygen"
+ "--without-doxygen",
+ "--without-gtk"
system "make"
system "make install"
end