diff options
| author | Jack Nagel | 2013-11-22 21:06:16 -0600 |
|---|---|---|
| committer | Jack Nagel | 2013-11-22 21:06:16 -0600 |
| commit | 86e2434a0a62c8eac016e83dc2c992305289be04 (patch) | |
| tree | 51b408fd0ac7e7a78214f5ba5704ea86929ffee1 /Library | |
| parent | b11d6a1c0ec75376f0fb1f1221b8009591582122 (diff) | |
| download | homebrew-86e2434a0a62c8eac016e83dc2c992305289be04.tar.bz2 | |
mkvtoolnix: add deps on libebml and libmatroska
The mkvtoolnix release tarball contains vendored copies of both of these
libraries, but the build system will select an external copy if one is
installed. There are no knobs to control this behavior, so it is safer
to add the dependencies rather than allow opportunistic linking.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/mkvtoolnix.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/mkvtoolnix.rb b/Library/Formula/mkvtoolnix.rb index 420fdd4e1..4ae50ce2e 100644 --- a/Library/Formula/mkvtoolnix.rb +++ b/Library/Formula/mkvtoolnix.rb @@ -10,6 +10,8 @@ class Mkvtoolnix < Formula depends_on 'pkg-config' => :build depends_on 'boost' => 'c++11' depends_on 'libvorbis' + depends_on 'libmatroska' + depends_on 'libebml' depends_on 'flac' => :optional depends_on 'lzo' => :optional |
