homebrew-core/Formula/eye-d3.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

34 lines
1.2 KiB
Ruby

class EyeD3 < Formula
desc "Work with ID3 metadata in .mp3 files"
homepage "http://eyed3.nicfit.net/"
url "http://eyed3.nicfit.net/releases/eyeD3-0.7.5.tgz"
sha256 "6a60f6dff7c8b74fee11eb378447b3bbbd2433ca5f7a00846840b0b2ddec9222"
bottle do
cellar :any
sha1 "fddbdc445f3d6f89f1c57dd656cef69263b9335d" => :mavericks
sha1 "fe13d924e6d1f85922930784f3b3490a730de708" => :mountain_lion
sha1 "6609a6784c0087a9d5d5a93d0e25298e5d233365" => :lion
end
depends_on :python if MacOS.version <= :snow_leopard
# Looking for documentation? Please submit a PR to build some!
# See https://github.com/Homebrew/homebrew/issues/32770 for previous attempt.
def install
# Install in our prefix, not the first-in-the-path python site-packages dir.
ENV.prepend_create_path "PYTHONPATH", libexec+"lib/python2.7/site-packages"
system "python", "setup.py", "install", "--prefix=#{libexec}"
share.install "docs/plugins", "docs/api", "docs/cli.rst"
bin.install Dir[libexec/"bin/*"]
bin.env_script_all_files(libexec+"bin", :PYTHONPATH => ENV["PYTHONPATH"])
end
test do
touch "temp.mp3"
system "#{bin}/eyeD3", "-a", "HomebrewYo", "-n", "37", "temp.mp3"
end
end