diff options
| author | nibbles 2bits | 2012-08-11 19:58:41 -0700 |
|---|---|---|
| committer | Jack Nagel | 2012-08-13 17:20:40 -0500 |
| commit | 5b3abd76b03c97c85bd086648b73914f10e7f3b2 (patch) | |
| tree | 433422f8221e5d680c60a26b96141d88c3a3b824 /Library | |
| parent | ee3f64d255155ba90b2eed6d0e428793c18783b7 (diff) | |
| download | homebrew-5b3abd76b03c97c85bd086648b73914f10e7f3b2.tar.bz2 | |
vorbis-tools: build ogg123 w/libao
vorbis-tools needs libao to create ogg123, a command line binary.
Add a `depends_on 'libao'` and one for `flac` also, because flac
is often found in an ogg container like webm. Ogg123 will also
be used in solfege. Tested by playing some files.
Closes #14134.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/vorbis-tools.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Library/Formula/vorbis-tools.rb b/Library/Formula/vorbis-tools.rb index df8ee06c4..a5bef4c7f 100644 --- a/Library/Formula/vorbis-tools.rb +++ b/Library/Formula/vorbis-tools.rb @@ -7,9 +7,8 @@ class VorbisTools < Formula depends_on 'libogg' depends_on 'libvorbis' - - # ao and ogg123 are optional deps - # Not sure why we don't just require them. - Adam V. + depends_on 'libao' + depends_on 'flac' def install system "./configure", "--disable-debug", "--disable-dependency-tracking", |
