aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorSimon COURTOIS2010-06-05 18:39:20 +0200
committerAdam Vandenberg2010-07-10 07:41:16 -0700
commit136a44b104b0a0eab9f7577299e5e683ab756c85 (patch)
treeafbda6ba310d1c5c7b4b920e62de6fc77ca65788 /Library/Formula
parentd22d7f431f1c123a599b87f21c9ffd4b2b65fcd7 (diff)
downloadhomebrew-136a44b104b0a0eab9f7577299e5e683ab756c85.tar.bz2
eyeD3 0.6.17
eyeD3 is a Python module and program for processing ID3 tags. Information about mp3 files (i.e bit rate, sample frequency, play time, etc.) is also provided. The formats supported are ID3 v1.0/v1.1 and v2.3/v2.4. Signed-off-by: Adam Vandenberg <flangy@gmail.com> * Install privately to libexec and link the script into bin
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/eye-d3.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/eye-d3.rb b/Library/Formula/eye-d3.rb
new file mode 100644
index 000000000..2291fe135
--- /dev/null
+++ b/Library/Formula/eye-d3.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class EyeD3 <Formula
+ url 'http://eyed3.nicfit.net/releases/eyeD3-0.6.17.tar.gz'
+ homepage 'http://eyed3.nicfit.net/'
+ md5 '7bc175d0eb1e0152753b2aca80df6fde'
+
+ aka "eyeD3"
+
+ def install
+ man1.install "doc/eyeD3.1.in" => "eyeD3.1"
+ libexec.install "src/eyeD3"
+ libexec.install "bin/eyeD3" => "eyeD3_script"
+ bin.mkpath
+ ln_s libexec+"eyeD3_script", bin+"eyeD3"
+ end
+end