aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authordschobel2010-06-03 00:45:04 -0500
committerAdam Vandenberg2010-06-03 07:04:47 -0700
commitc1f472363b73011f362c6eba4aaccab9fac722d8 (patch)
treeb8f7389be3b44f4402f98e9786a3496dc36e4d99 /Library/Formula
parent95a7f1d18f4a563b9c92ae287e2b420cbdb54d8f (diff)
downloadhomebrew-c1f472363b73011f362c6eba4aaccab9fac722d8.tar.bz2
added id3tool formula
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/id3tool.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/id3tool.rb b/Library/Formula/id3tool.rb
new file mode 100644
index 000000000..6081091c7
--- /dev/null
+++ b/Library/Formula/id3tool.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Id3tool <Formula
+ url 'http://nekohako.xware.cx/id3tool/id3tool-1.2a.tar.gz'
+ homepage 'http://nekohako.xware.cx/id3tool/'
+ md5 '061185562c0d0e6327406d9fc2f194b2'
+
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--mandir=#{man}"
+ system "make install"
+ end
+end