blob: 6e6245c4003a5834e834187119ed59171b183c05 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
require 'formula'
class GstPluginsBad < Formula
homepage 'http://gstreamer.freedesktop.org/'
url 'http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.4.3.tar.xz'
mirror 'http://ftp.osuosl.org/pub/blfs/svn/g/gst-plugins-bad-1.4.3.tar.xz'
sha256 'a6840080c469d0db51d6d4d0f7c42c97b3c8c01942f24401c61b1ad36726b97c'
bottle do
sha1 "7cdb7699744842c077459fc7498a269477c04425" => :mavericks
sha1 "95b4182a6da12cd50f8319256581a3afbce58607" => :mountain_lion
sha1 "72610ec1a7734f6a5e100b073b669698cc7e8080" => :lion
end
head do
url 'git://anongit.freedesktop.org/gstreamer/gst-plugins-bad'
depends_on :autoconf
depends_on :automake
depends_on :libtool
end
depends_on 'pkg-config' => :build
depends_on 'gettext'
depends_on 'gst-plugins-base'
depends_on 'dirac' => :optional
depends_on 'faac' => :optional
depends_on 'faad2' => :optional
depends_on 'gnutls' => :optional
depends_on 'libdvdread' => :optional
depends_on 'libexif' => :optional
depends_on 'libmms' => :optional
depends_on 'rtmpdump' => :optional
depends_on 'schroedinger' => :optional
def install
args = %W[
--prefix=#{prefix}
--disable-apple_media
--disable-yadif
--disable-sdl
--disable-debug
--disable-dependency-tracking
]
if build.head?
ENV["NOCONFIGURE"] = "yes"
system "./autogen.sh"
end
system "./configure", *args
system "make"
system "make", "install"
end
end
|