diff options
| author | Adam Vandenberg | 2013-07-11 06:39:51 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-07-11 06:39:51 -0700 |
| commit | 5b461da21bb15c02273ce7fea29fab698fc8eb78 (patch) | |
| tree | 25c50958af26db19fbe5d969402931d2db23eb9b /Library/Formula | |
| parent | c1b2965d3ca88da153d7d97b02bf3489780ec2c1 (diff) | |
| download | homebrew-5b461da21bb15c02273ce7fea29fab698fc8eb78.tar.bz2 | |
easy-tag: support ogg/flac by default
Closes #21133.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/easy-tag.rb | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Library/Formula/easy-tag.rb b/Library/Formula/easy-tag.rb index 69186fe58..d8fc322e1 100644 --- a/Library/Formula/easy-tag.rb +++ b/Library/Formula/easy-tag.rb @@ -20,16 +20,17 @@ class EasyTag < Formula depends_on 'xz' => :build depends_on 'glib' depends_on 'gtk+' - depends_on 'libid3tag' depends_on 'id3lib' - depends_on 'libvorbis' => :optional - depends_on 'speex' => :optional - depends_on 'mp4v2' => :optional - depends_on 'wavpack' => :optional + depends_on 'libid3tag' - depends_on 'flac' => :optional + depends_on 'libvorbis' => :recommended + depends_on 'flac' => :recommended depends_on 'libogg' if build.with? 'flac' + depends_on 'mp4v2' => :optional + depends_on 'speex' => :optional + depends_on 'wavpack' => :optional + def install system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" |
