aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiayong Ou2009-10-13 15:12:45 +0200
committerMax Howell2009-10-19 13:48:34 +0100
commit12d2ccd29703fbe7f95a66821849ccc5bef57016 (patch)
treedd39675f65a1374851e4295098c6d9816c03f432
parent02e34e1e44bb9fc98ca7b4365e095c64adeca0d5 (diff)
downloadhomebrew-12d2ccd29703fbe7f95a66821849ccc5bef57016.tar.bz2
libid3tag formula
ID3 library from libmad
-rw-r--r--Library/Formula/libid3tag.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/libid3tag.rb b/Library/Formula/libid3tag.rb
new file mode 100644
index 000000000..681f43b43
--- /dev/null
+++ b/Library/Formula/libid3tag.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Libid3tag <Formula
+ homepage 'http://www.underbit.com/products/mad/'
+ url 'http://downloads.sourceforge.net/project/mad/libid3tag/0.15.1b/libid3tag-0.15.1b.tar.gz'
+ md5 'e5808ad997ba32c498803822078748c3'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end