aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ffmpeg2theora.rb
diff options
context:
space:
mode:
authorDominyk Tiller2014-10-22 18:08:52 +0100
committerMike McQuaid2014-10-22 18:17:37 +0100
commit29ad65d76edf4d9eb979ef849c28fb326510bd36 (patch)
treeeb487acda60b1de35604d01b758d1323926ce515 /Library/Formula/ffmpeg2theora.rb
parent10b35a391f5e97a131c297ff099f707221e61603 (diff)
downloadhomebrew-29ad65d76edf4d9eb979ef849c28fb326510bd36.tar.bz2
ffmpegtheora: re-add libkate dependency.
Returns the dependency I removed yesterday since managed to fix libkate last night and that was merged. Closes #33477. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula/ffmpeg2theora.rb')
-rw-r--r--Library/Formula/ffmpeg2theora.rb12
1 files changed, 7 insertions, 5 deletions
diff --git a/Library/Formula/ffmpeg2theora.rb b/Library/Formula/ffmpeg2theora.rb
index 794a71f47..1dfc1e219 100644
--- a/Library/Formula/ffmpeg2theora.rb
+++ b/Library/Formula/ffmpeg2theora.rb
@@ -13,6 +13,8 @@ class Ffmpeg2theora < Formula
url "http://git.xiph.org/?p=ffmpeg2theora.git;a=patch;h=d3435a6a83dc656379de9e6523ecf8d565da6ca6"
sha1 "5a3e48c386ac077ab58afa6c49631c88f8f85929"
end
+
+ depends_on "libkate" => :optional
end
bottle do
@@ -23,7 +25,11 @@ class Ffmpeg2theora < Formula
sha1 "7c215c1078da702b774e8f99787f9bd87975aedc" => :mountain_lion
end
- head "git://git.xiph.org/ffmpeg2theora.git"
+ head do
+ url "git://git.xiph.org/ffmpeg2theora.git"
+
+ depends_on "libkate" => :recommended
+ end
depends_on "pkg-config" => :build
depends_on "scons" => :build
@@ -32,10 +38,6 @@ class Ffmpeg2theora < Formula
depends_on "libvorbis"
depends_on "theora"
- # ffmpeg2theora can't find our libkate because we don't build liboggkate.
- # Either fix this here or upstream this issue.
- # Have removed that optional dependency here temporarily.
-
def install
args = ["prefix=#{prefix}", "mandir=PREFIX/share/man"]
scons "install", *args