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
master
Simon COURTOIS 2010-06-05 18:39:20 +02:00 committed by Adam Vandenberg
parent 112c01a5a3
commit 89c995e008
1 changed files with 17 additions and 0 deletions

17
Formula/eye-d3.rb Normal file
View File

@ -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