diff options
| author | Ludwig Schwardt | 2011-09-06 00:16:13 +0300 | 
|---|---|---|
| committer | Jack Nagel | 2011-09-05 17:15:21 -0500 | 
| commit | 1cb0da9816cac373b6b07ba211a0517c315aa91c (patch) | |
| tree | 730115d0f76247f19e0d4aaa5d936d15819e8cca /Library/Formula/sox.rb | |
| parent | 943c50dc6b0e1e831a0907d32d265aa37bd409f0 (diff) | |
| download | homebrew-1cb0da9816cac373b6b07ba211a0517c315aa91c.tar.bz2 | |
sox: add libsndfile as a dependency
By depending on libsndfile, SoX gains the ability to read and write
CAF (Core Audio Format) files, just like the afconvert command-line
utility. CAF is the preferred uncompressed audio file format on iOS
platforms.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/sox.rb')
| -rw-r--r-- | Library/Formula/sox.rb | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Formula/sox.rb b/Library/Formula/sox.rb index cd1199a4e..44b1d1848 100644 --- a/Library/Formula/sox.rb +++ b/Library/Formula/sox.rb @@ -8,6 +8,7 @@ class Sox < Formula    depends_on 'pkg-config' => :build    depends_on 'libvorbis' => :optional    depends_on 'flac' => :optional +  depends_on 'libsndfile' => :optional    depends_on 'libao' => :optional    depends_on 'mad' # see commit message  | 
