diff options
| author | Adam Vandenberg | 2013-07-10 15:15:56 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-07-10 15:15:56 -0700 |
| commit | 0bea025666203d73573fd81dd618985124001cfd (patch) | |
| tree | ab75ec73c48f7afaf493adca4e3e11cf270d009f /Library/Formula | |
| parent | 0f62f1daaba2260038a500e56075500f53695779 (diff) | |
| download | homebrew-0bea025666203d73573fd81dd618985124001cfd.tar.bz2 | |
easytag: fix flac support
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/easy-tag.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/easy-tag.rb b/Library/Formula/easy-tag.rb index 2906df462..69186fe58 100644 --- a/Library/Formula/easy-tag.rb +++ b/Library/Formula/easy-tag.rb @@ -24,10 +24,12 @@ class EasyTag < Formula depends_on 'id3lib' depends_on 'libvorbis' => :optional depends_on 'speex' => :optional - depends_on 'flac' => :optional depends_on 'mp4v2' => :optional depends_on 'wavpack' => :optional + depends_on 'flac' => :optional + depends_on 'libogg' if build.with? 'flac' + def install system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" |
