diff options
| author | asaph | 2014-11-19 12:44:15 -0800 |
|---|---|---|
| committer | Mike McQuaid | 2014-11-20 14:02:47 +0000 |
| commit | 43669a7667224d0f5babe1dde69f81d08451c288 (patch) | |
| tree | 72d0fd5ed3cbcca80b4a058df9b28eb924251132 /Library | |
| parent | da120c7d878f45c7d7e6dd514e0d2bcc4080d2d1 (diff) | |
| download | homebrew-43669a7667224d0f5babe1dde69f81d08451c288.tar.bz2 | |
timidity: add libao support
Closes #34326.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/timidity.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/timidity.rb b/Library/Formula/timidity.rb index 719698bab..c8c264f5d 100644 --- a/Library/Formula/timidity.rb +++ b/Library/Formula/timidity.rb @@ -12,6 +12,7 @@ class Timidity < Formula depends_on 'libvorbis' => :recommended depends_on 'flac' => :recommended depends_on 'speex' => :recommended + depends_on 'libao' => :recommended resource 'freepats' do url 'http://freepats.zenvoid.org/freepats-20060219.zip' @@ -30,6 +31,7 @@ class Timidity < Formula formats << 'vorbis' if build.with? 'libogg' and build.with? 'libvorbis' formats << 'flac' if build.with? 'flac' formats << 'speex' if build.with? 'speex' + formats << 'ao' if build.with? 'libao' if formats.any? args << "--enable-audio=" + formats.join(",") |
