blob: a9731dafd49db3f65160ec42f916a7172af697f9 (
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
|
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'
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"
system "make"
system "make install"
end
end
|