diff options
| author | Adam Vandenberg | 2014-05-13 09:14:04 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2014-05-13 09:54:08 -0700 |
| commit | a8aa372203829914dbc1909f7123dd349d0c4d98 (patch) | |
| tree | 3fa3ff0bc535ae7701b6e9bb94e970d0a1269aea /Library | |
| parent | 8caa25500bca23af00670266321995da2ebc98b1 (diff) | |
| download | homebrew-a8aa372203829914dbc1909f7123dd349d0c4d98.tar.bz2 | |
easy-tag 2.2.1
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/easy-tag.rb | 35 |
1 files changed, 17 insertions, 18 deletions
diff --git a/Library/Formula/easy-tag.rb b/Library/Formula/easy-tag.rb index eeedfcb47..01d06ce68 100644 --- a/Library/Formula/easy-tag.rb +++ b/Library/Formula/easy-tag.rb @@ -1,27 +1,26 @@ -require 'formula' +require "formula" class EasyTag < Formula - homepage 'http://projects.gnome.org/easytag' - url 'http://ftp.gnome.org/pub/GNOME/sources/easytag/2.1/easytag-2.1.9.tar.xz' - sha256 'f5a6e742a458ef6f48f2d5e98a24182a9c87a213e847fcce75c757ac90273501' + homepage "http://projects.gnome.org/easytag" + url "http://ftp.gnome.org/pub/GNOME/sources/easytag/2.2/easytag-2.2.1.tar.xz" + sha1 "2d18c0b32ab50d4aed9b16ec0bc09b4ac57c41fc" depends_on :x11 - depends_on 'pkg-config' => :build - depends_on 'intltool' => :build - depends_on 'itstool' => :build - depends_on 'glib' - depends_on 'gtk+' - depends_on 'hicolor-icon-theme' - depends_on 'id3lib' - depends_on 'libid3tag' + depends_on "pkg-config" => :build + depends_on "intltool" => :build + depends_on "itstool" => :build + depends_on "gtk+" + depends_on "hicolor-icon-theme" + depends_on "id3lib" + depends_on "libid3tag" + depends_on "taglib" - depends_on 'libvorbis' => :recommended - depends_on 'flac' => :recommended - depends_on 'libogg' if build.with? 'flac' + 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 + depends_on "speex" => :optional + depends_on "wavpack" => :optional def install system "./configure", "--disable-dependency-tracking", |
