aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDominic Evans2010-10-20 00:58:11 +0100
committerAdam Vandenberg2011-02-27 13:19:11 -0800
commitb3e8accb651b7ca7e94649c6fb60f09bcf6ae43e (patch)
tree78ea95c5cd9c9d12f809b535f4ab574ba4500294 /Library
parentf6ec80b1194b7a6ece563816a10e17d48c8b6f52 (diff)
downloadhomebrew-b3e8accb651b7ca7e94649c6fb60f09bcf6ae43e.tar.bz2
EasyTAG 2.1.6
EasyTAG is a utility for viewing and editing tags for MP3, MP2, MP4/AAC, FLAC, Ogg Vorbis, MusePack, Monkey's Audio and WavPack files. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/easy-tag.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/Library/Formula/easy-tag.rb b/Library/Formula/easy-tag.rb
new file mode 100644
index 000000000..11d6054ed
--- /dev/null
+++ b/Library/Formula/easy-tag.rb
@@ -0,0 +1,24 @@
+require 'formula'
+
+class EasyTag <Formula
+ url 'http://archive.ubuntu.com/ubuntu/pool/universe/e/easytag/easytag_2.1.6.orig.tar.gz'
+ homepage 'http://easytag.sf.net'
+ md5 '91b57699ac30c1764af33cc389a64c71'
+
+ depends_on 'pkg-config' => :build
+ depends_on 'glib'
+ depends_on 'gtk+'
+ depends_on 'id3lib'
+ depends_on 'libid3tag'
+ depends_on 'mp4v2'
+
+ def install
+ # Use mp4v2 instead of mp4
+ inreplace ['configure', 'src/mp4_header.c', 'src/mp4_tag.c'],
+ "#include <mp4.h>", "#include <mp4v2/mp4v2.h>"
+
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end