89c995e008
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
17 lines
409 B
Ruby
17 lines
409 B
Ruby
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
|